--- apport-2.20.3.orig/NEWS +++ apport-2.20.3/NEWS @@ -1,6 +1,24 @@ This file summarizes the major and interesting changes for each release. For a detailed list of changes, please see ChangeLog. +2.30.4 (UNRELEASED) +------------------- + * test_backend_apt_dpkg.py: Move tests from Ubuntu 15.10 "wily" (which is EOL + now) to 16.04 LTS "xenial". + * packaging-apt-dpkg.py: Explicitly set Dir::State::Status to the host + dpkg status file for get_source_tree(), to work with apt 1.3~pre4. + * packaging-apt-dpkg.py: Change the proxy settings to use "DIRECT" instead + of "direct". The latter never really worked, but APT did not complain about + it. + * data/iwlwifi_error_dump: Fix add_package() call. + * hookutils.py, attach_mac_events(): Only attach /proc/version_signature if + that actually exists. + * test/test_report.py: Slightly relax stack trace checks to also work with + glibc 2.24. + * apport-gtk: Specify module version with GI imports to avoid warnings. Thanks + Anatoly Techtonik. (LP: #1502173) + * test/run: Prefer pycodestyle over pep8. + 2.20.3 (2016-07-28) ------------------- * problem_report.py: Fail with proper exception when trying to assign a list --- apport-2.20.3.orig/apport/crashdb_impl/launchpad.py +++ apport-2.20.3/apport/crashdb_impl/launchpad.py @@ -134,7 +134,12 @@ return self.__launchpad if Launchpad is None: - sys.stderr.write('ERROR: The launchpadlib Python %s module is not installed. This functionality is not available.\n' % sys.version[0]) + if _python2: + sys.stderr.write('ERROR: The python-launchpadlib package is not installed. This functionality is not available.\n') + else: + # this is a bit strange here, but it is the main user-visible reason why we end up here + sys.stderr.write('ERROR: You need to use apport-collect for updating an existing bug\n') + sys.exit(1) if self.options.get('launchpad_instance'): --- apport-2.20.3.orig/apport/hookutils.py +++ apport-2.20.3/apport/hookutils.py @@ -57,7 +57,7 @@ new key with '_' appended will be added instead. If the contents is valid UTF-8, or force_unicode is True, then the value - will a string, otherwise it will be bytes. + will be a string, otherwise it will be bytes. ''' if not key: key = path_to_key(path) @@ -360,7 +360,7 @@ def command_output(command, input=None, stderr=subprocess.STDOUT, keep_locale=False, decode_utf8=True): - '''Try to execute given command (array) and return its stdout. + '''Try to execute given command (list) and return its stdout. In case of failure, a textual error gets returned. This function forces LC_MESSAGES to C, to avoid translated output in bug reports. @@ -399,7 +399,7 @@ def root_command_output(command, input=None, stderr=subprocess.STDOUT, decode_utf8=True): - '''Try to execute given command (array) as root and return its stdout. + '''Try to execute given command (list) as root and return its stdout. This passes the command through pkexec, unless the caller is already root. @@ -715,7 +715,7 @@ if 'AuditLog' not in report and os.path.exists('/var/run/auditd.pid'): attach_root_command_outputs(report, {'AuditLog': 'egrep "' + mac_regex + '" /var/log/audit/audit.log'}) - attach_file(report, '/proc/version_signature', 'ProcVersionSignature') + attach_file_if_exists(report, '/proc/version_signature', 'ProcVersionSignature') attach_file(report, '/proc/cmdline', 'ProcCmdline') for match in re.findall(aa_re, report.get('KernLog', '') + report.get('AuditLog', '')): --- apport-2.20.3.orig/apport/report.py +++ apport-2.20.3/apport/report.py @@ -828,14 +828,21 @@ False otherwise. ''' # determine package names, unless already given as arguments + # avoid path traversal if not package: package = self.get('Package') if package: package = package.split()[0] + if '/' in package: + self['UnreportableReason'] = 'invalid Package: %s' % package + return if not srcpackage: srcpackage = self.get('SourcePackage') if srcpackage: srcpackage = srcpackage.split()[0] + if '/' in srcpackage: + self['UnreportableReason'] = 'invalid SourcePackage: %s' % package + return hook_dirs = [_hook_dir] # also search hooks in /opt, when program is from there --- apport-2.20.3.orig/apport/ui.py +++ apport-2.20.3/apport/ui.py @@ -18,6 +18,7 @@ import subprocess, threading, webbrowser import signal import time +import ast import apport, apport.fileutils, apport.REThread @@ -187,6 +188,7 @@ self.report = None self.report_file = None self.cur_package = None + self.offer_restart = False try: self.crashdb = apport.crashdb.get_crashdb(None) @@ -217,6 +219,9 @@ otherwise. ''' result = False + # for iterating over /var/crash (as opposed to running on or clicking + # on a particular .crash file) we offer restarting + self.offer_restart = True if os.geteuid() == 0: reports = apport.fileutils.get_new_system_reports() @@ -301,7 +306,12 @@ if not response['report']: return - apport.fileutils.mark_report_upload(report_file) + # We don't want to send crashes to the crash database for binaries + # that changed since the crash happened. See LP: #1039220 for + # details. + if '_MarkForUpload' in self.report and \ + self.report['_MarkForUpload'] != 'False': + apport.fileutils.mark_report_upload(report_file) # We check for duplicates and unreportable crashes here, rather # than before we show the dialog, as we want to submit these to the # crash database, but not Launchpad. @@ -919,11 +929,11 @@ # specification? if self.report['CrashDB'].lstrip().startswith('{'): try: - spec = eval(self.report['CrashDB'], {}) + spec = ast.literal_eval(self.report['CrashDB']) assert isinstance(spec, dict) assert 'impl' in spec - except: - self.report['UnreportableReason'] = 'A package hook defines an invalid crash database definition:\n%s' % self.report['CrashDB'] + except Exception as e: + self.report['UnreportableReason'] = 'A package hook defines an invalid crash database definition:\n%s\n%s' % (self.report['CrashDB'], e) return False try: self.crashdb = apport.crashdb.load_crashdb(None, spec) @@ -953,6 +963,8 @@ If a symptom script is given, this will be run first (used by run_symptom()). ''' + self.report['_MarkForUpload'] = 'True' + # check if we already ran (we might load a processed report), skip if so if (self.report.get('ProblemType') == 'Crash' and 'Stacktrace' in self.report) or (self.report.get('ProblemType') != 'Crash' and 'Dependencies' in self.report): @@ -987,6 +999,7 @@ cur_time = int(os.stat(self.report['ExecutablePath']).st_mtime) if orig_time != cur_time: + self.report['_MarkForUpload'] = 'False' self.report['UnreportableReason'] = ( _('The problem happened with the program %s which changed ' 'since the crash occurred.') % self.report['ExecutablePath']) @@ -1037,12 +1050,15 @@ self.report['UnreportableReason'] = '%s\n\n%s' % ( _('This problem report is damaged and cannot be processed.'), repr(e)) + self.report['_MarkForUpload'] = 'False' except ValueError: # package does not exist self.report['UnreportableReason'] = _('The report belongs to a package that is not installed.') + self.report['_MarkForUpload'] = 'False' except Exception as e: apport.error(repr(e)) self.report['UnreportableReason'] = _('An error occurred while attempting to ' 'process this problem report:') + '\n\n' + str(e) + self.report['_MarkForUpload'] = 'False' if 'UnreportableReason' in self.report or not self.check_report_crashdb(): self.ui_stop_info_collection_progress() --- apport-2.20.3.orig/backends/packaging-apt-dpkg.py +++ apport-2.20.3/backends/packaging-apt-dpkg.py @@ -192,6 +192,12 @@ for o in pkg.candidate.origins: if o.origin == distro_name: return True + + # on Ubuntu system-image we might not have any /var/lib/apt/lists + if set([o.origin for o in pkg.candidate.origins]) == set(['']) and \ + os.path.exists('/etc/system-image/channel.ini'): + return True + return False def is_native_origin_package(self, package): @@ -557,6 +563,7 @@ if sandbox: f = tempfile.NamedTemporaryFile() f.write(('''Dir "%s"; +Dir::State::Status "/var/lib/dpkg/status"; Debug::NoLocking "true"; ''' % sandbox).encode()) f.flush() @@ -749,8 +756,8 @@ apt.apt_pkg.config.set('APT::Architecture', architecture) apt.apt_pkg.config.set('Acquire::Languages', 'none') # directly connect to Launchpad when downloading deb files - apt.apt_pkg.config.set('Acquire::http::Proxy::api.launchpad.net', 'direct') - apt.apt_pkg.config.set('Acquire::http::Proxy::launchpad.net', 'direct') + apt.apt_pkg.config.set('Acquire::http::Proxy::api.launchpad.net', 'DIRECT') + apt.apt_pkg.config.set('Acquire::http::Proxy::launchpad.net', 'DIRECT') if verbose: fetchProgress = apt.progress.text.AcquireProgress() @@ -1394,16 +1401,12 @@ apport.warning("Error: can't find signing_key_fingerprint at %s" % ppa_archive_url) continue - argv = ['gpg', '--no-options', - '--no-default-keyring', - '--no-auto-check-trustdb', - '--keyring', - os.path.join(trusted_d, - '%s.gpg' % origin), - ] - argv += ['--quiet', '--batch', - '--keyserver', 'hkp://keyserver.ubuntu.com:80/', - '--recv', signing_key_fingerprint] + argv = ['apt-key', '--keyring', + os.path.join(trusted_d, '%s.gpg' % origin), + 'adv', '--quiet', + '--keyserver', 'keyserver.ubuntu.com', '--recv-key', + signing_key_fingerprint] + if subprocess.call(argv) != 0: apport.warning('Unable to import key for %s' % ppa_archive_url) --- apport-2.20.3.orig/bin/apport-bug +++ apport-2.20.3/bin/apport-bug @@ -11,11 +11,26 @@ # option) any later version. See http://www.gnu.org/copyleft/gpl.html for # the full text of the license. +# Explicitly set the PATH to that of ENV_SUPATH in /etc/login.defs. We need do +# this so that confined applications using ubuntu-browsers.d/ubuntu-integration +# cannot abuse the environment to escape AppArmor confinement via this script +# (LP: #1045986). This can be removed once AppArmor supports environment +# filtering (LP: #1045985) +PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin + +if [ "${0%-collect}" != "$0" ]; then + prefix=python + if ! python -c 'import apport' 2>/dev/null; then + echo "You need to run 'sudo apt-get install python-apport' for apport-collect to work." >&2 + exit 1 + fi +fi + # locate path of a particular program find_program() { for p in /usr/local/bin /usr/bin /usr/local/share/apport /usr/share/apport; do if [ -x $p/$1 ]; then - RET="$p/$1" + RET="$prefix $p/$1" return fi done --- apport-2.20.3.orig/data/general-hooks/clickinfo.py +++ apport-2.20.3/data/general-hooks/clickinfo.py @@ -0,0 +1,44 @@ +''' +Determine rudimentary package and version information for click packages to +enable bucketing on the Error Tracker. + +Copyright (C) 2014 Canonical Ltd. +Author: Brian Murray + +This program is free software; you can redistribute it and/or modify it +under the terms of the GNU General Public License as published by the +Free Software Foundation; either version 2 of the License, or (at your +option) any later version. See http://www.gnu.org/copyleft/gpl.html for +the full text of the license. +''' + +import subprocess + + +def add_info(report, ui): + exec_path = report.get('ExecutablePath') + if not exec_path: + return + if not exec_path.startswith('/opt/click.ubuntu.com') and \ + not exec_path.startswith('/usr/share/click/preinstalled'): + return + # indicate that the crash is from a click package so the Error Tracker + # will not ask for a core dump + report['ClickPackage'] = "True" + click_info = subprocess.Popen(['click', 'info', exec_path], + stdout=subprocess.PIPE, + universal_newlines=True) + out = click_info.communicate()[0] + for line in out.splitlines(): + if 'name' in line: + package = line.strip(' ,').split(': ')[1] + package = package.replace('"', '') + if 'version' in line: + version = line.strip(' ,').split(': ')[1] + version = version.replace('"', '') + if 'architecture' in line: + pkg_arch = line.strip(' ,').split(': ')[1] + pkg_arch = pkg_arch.replace('"', '') + report['Package'] = '%s %s' % (package, version) + report['SourcePackage'] = package + report['PackageArchitecture'] = pkg_arch --- apport-2.20.3.orig/data/general-hooks/cloud_archive.py +++ apport-2.20.3/data/general-hooks/cloud_archive.py @@ -0,0 +1,34 @@ +''' +Redirect reports on packages from the Ubuntu Cloud Archive to the +launchpad cloud-archive project. + +Copyright (C) 2013 Canonical Ltd. +Author: James Page + +This program is free software; you can redistribute it and/or modify it +under the terms of the GNU General Public License as published by the +Free Software Foundation; either version 2 of the License, or (at your +option) any later version. See http://www.gnu.org/copyleft/gpl.html for +the full text of the license. +''' +from apport import packaging + + +def add_info(report, ui): + package = report.get('Package') + if not package: + return + package = package.split()[0] + try: + if '~cloud' in packaging.get_version(package) and \ + packaging.get_package_origin(package) == 'Canonical': + report['CrashDB'] = '''{ + "impl": "launchpad", + "project": "cloud-archive", + "bug_pattern_url": "http://people.canonical.com/~ubuntu-archive/bugpatterns/bugpatterns.xml", + }''' + except ValueError as e: + if 'does not exist' in str(e): + return + else: + raise e --- apport-2.20.3.orig/data/general-hooks/powerpc.py +++ apport-2.20.3/data/general-hooks/powerpc.py @@ -0,0 +1,105 @@ +# This hook collects logs for Power systems and more specific logs for Pseries, +# PowerNV platforms. +# +# Author: Thierry FAUCK +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + +import os, os.path, platform, tempfile, subprocess + +from apport.hookutils import command_output, attach_root_command_outputs, attach_file, attach_file_if_exists, command_available + +'''IBM Power System related information''' + + +def add_tar(report, dir, key): + (fd, f) = tempfile.mkstemp(prefix='apport.', suffix='.tar') + os.close(fd) + subprocess.call(['tar', 'chf', f, dir]) + if os.path.getsize(f) > 0: + report[key] = (f, ) + # NB, don't cleanup the temp file, it'll get read later by the apport main + # code + + +def add_info(report, ui): + arch = platform.machine() + if arch not in ['ppc64', 'ppc64le']: + return + + is_kernel = report['ProblemType'].startswith('Kernel') or 'linux' in report.get('Package') + + try: + with open('/proc/cpuinfo', 'r') as fp: + contents = fp.read() + ispSeries = 'pSeries' in contents + isPowerNV = 'PowerNV' in contents + isPowerKVM = 'emulated by qemu' in contents + except IOError: + ispSeries = False + isPowerNV = False + isPowerKVM = False + + if ispSeries or isPowerNV: + if is_kernel: + add_tar(report, '/proc/device-tree/', 'DeviceTree.tar') + attach_file(report, '/proc/misc', 'ProcMisc') + attach_file(report, '/proc/locks', 'ProcLocks') + attach_file(report, '/proc/loadavg', 'ProcLoadAvg') + attach_file(report, '/proc/swaps', 'ProcSwaps') + attach_file(report, '/proc/version', 'ProcVersion') + report['cpu_smt'] = command_output(['ppc64_cpu', '--smt']) + report['cpu_cores'] = command_output(['ppc64_cpu', '--cores-present']) + report['cpu_coreson'] = command_output(['ppc64_cpu', '--cores-on']) + # To be executed as root + if is_kernel: + attach_root_command_outputs(report, { + 'cpu_runmode': 'ppc64_cpu --run-mode', + 'cpu_freq': 'ppc64_cpu --frequency', + 'cpu_dscr': 'ppc64_cpu --dscr', + 'nvram': 'cat /dev/nvram', + }) + attach_file_if_exists(report, '/var/log/platform') + + if ispSeries and not isPowerKVM: + attach_file(report, '/proc/ppc64/lparcfg', 'ProcLparCfg') + attach_file(report, '/proc/ppc64/eeh', 'ProcEeh') + attach_file(report, '/proc/ppc64/systemcfg', 'ProcSystemCfg') + report['lscfg_vp'] = command_output(['lscfg', '-vp']) + report['lsmcode'] = command_output(['lsmcode', '-A']) + report['bootlist'] = command_output(['bootlist', '-m', 'both', '-r']) + report['lparstat'] = command_output(['lparstat', '-i']) + if command_available('lsvpd'): + report['lsvpd'] = command_output(['lsvpd', '--debug']) + if command_available('lsvio'): + report['lsvio'] = command_output(['lsvio', '-des']) + if command_available('servicelog'): + report['servicelog_dump'] = command_output(['servicelog', '--dump']) + if command_available('servicelog_notify'): + report['servicelog_list'] = command_output(['servicelog_notify', '--list']) + if command_available('usysattn'): + report['usysattn'] = command_output(['usysattn']) + if command_available('usysident'): + report['usysident'] = command_output(['usysident']) + if command_available('serv_config'): + report['serv_config'] = command_output(['serv_config', '-l']) + + if isPowerNV: + add_tar(report, '/proc/ppc64/', 'ProcPpc64.tar') + attach_file_if_exists(report, '/sys/firmware/opal/msglog') + if os.path.exists('/var/log/dump'): + report['VarLogDump_list'] = command_output(['ls', '-l', '/var/log/dump']) + if is_kernel: + add_tar(report, '/var/log/opal-elog', 'OpalElog.tar') --- apport-2.20.3.orig/data/general-hooks/ubuntu-gnome.py +++ apport-2.20.3/data/general-hooks/ubuntu-gnome.py @@ -0,0 +1,36 @@ +'''Bugs and crashes for the Ubuntu GNOME flavour. + +Copyright (C) 2013 Canonical Ltd. +Author: Martin Pitt + +This program is free software; you can redistribute it and/or modify it +under the terms of the GNU General Public License as published by the +Free Software Foundation; either version 2 of the License, or (at your +option) any later version. See http://www.gnu.org/copyleft/gpl.html for +the full text of the license. +''' + + +def add_info(report, ui): + # redirect reports against PPA packages to ubuntu-gnome project + if '[origin: LP-PPA-gnome3-team-gnome3' in report.get('Package', ''): + report['CrashDB'] = '''{ + "impl": "launchpad", + "project": "ubuntu-gnome", + "bug_pattern_url": "http://people.canonical.com/~ubuntu-archive/bugpatterns/bugpatterns.xml", + "dupdb_url": "http://phillw.net/ubuntu-gnome/apport_duplicates/", + }''' + + # using the staging PPA? + if 'LP-PPA-gnome3-team-gnome3-staging' in report['Package']: + report.setdefault('Tags', '') + report['Tags'] += ' gnome3-staging' + + # using the next PPA? + if 'LP-PPA-gnome3-team-gnome3-next' in report['Package']: + report.setdefault('Tags', '') + report['Tags'] += ' gnome3-next' + + if '[origin: LP-PPA-gnome3-team-gnome3' in report.get('Dependencies', ''): + report.setdefault('Tags', '') + report['Tags'] += ' gnome3-ppa' --- apport-2.20.3.orig/data/general-hooks/ubuntu.py +++ apport-2.20.3/data/general-hooks/ubuntu.py @@ -0,0 +1,546 @@ +'''Attach generally useful information, not specific to any package. + +Copyright (C) 2009 Canonical Ltd. +Authors: Matt Zimmerman , + Brian Murray + +This program is free software; you can redistribute it and/or modify it +under the terms of the GNU General Public License as published by the +Free Software Foundation; either version 2 of the License, or (at your +option) any later version. See http://www.gnu.org/copyleft/gpl.html for +the full text of the license. +''' + +import re, os, os.path, time, sys, subprocess + +import apport.packaging +import apport.hookutils +import problem_report +from apport import unicode_gettext as _ +from glob import glob + +if sys.version < '3': + from urlparse import urljoin + from urllib2 import urlopen + (urljoin, urlopen) # pyflakes +else: + from urllib.parse import urljoin + from urllib.request import urlopen + + +def add_info(report, ui): + add_release_info(report) + + add_kernel_info(report) + + add_cloud_info(report) + + add_proposed_info(report) + + # collect a condensed version of /proc/cpuinfo + apport.hookutils.attach_file(report, '/proc/cpuinfo', + 'ProcCpuinfo') + short_cpuinfo = [] + for item in reversed(report.get('ProcCpuinfo', '').split('\n')): + short_cpuinfo.append(item) + if item.startswith('processor\t:'): + break + short_cpuinfo = reversed(short_cpuinfo) + report['ProcCpuinfoMinimal'] = '\n'.join(short_cpuinfo) + report.pop('ProcCpuinfo') + + hook_errors = [k for k in report.keys() if k.startswith('HookError_')] + if hook_errors: + add_tag(report, 'apport-hook-error') + + try: + report['ApportVersion'] = apport.packaging.get_version('apport') + except ValueError: + # might happen on local installs + pass + + if report.get('ProblemType') == 'Package': + # every error report regarding a package should have package manager + # version information + apport.hookutils.attach_related_packages(report, ['dpkg', 'apt']) + check_for_disk_error(report) + # check to see if the real root on a persistent media is full + if 'LiveMediaBuild' in report: + st = os.statvfs('/cdrom') + free_mb = st.f_bavail * st.f_frsize / 1000000 + if free_mb < 10: + report['UnreportableReason'] = 'Your system partition has less than \ +%s MB of free space available, which leads to problems using applications \ +and installing updates. Please free some space.' % (free_mb) + + match_error_messages(report) + + for attachment in ['DpkgTerminalLog', 'VarLogDistupgradeApttermlog']: + if attachment in report: + log_file = get_attachment_contents(report, attachment) + untrimmed_dpkg_log = log_file + check_attachment_for_errors(report, attachment) + trimmed_log = get_attachment_contents(report, attachment) + trimmed_log = trimmed_log.split('\n') + lines = [] + for line in untrimmed_dpkg_log.splitlines(): + if line not in trimmed_log: + lines.append(str(line)) + elif line in trimmed_log: + trimmed_log.remove(line) + dpkg_log_without_error = '\n'.join(lines) + + # crash reports from live system installer often expose target mount + for f in ('ExecutablePath', 'InterpreterPath'): + if f in report and report[f].startswith('/target/'): + report[f] = report[f][7:] + + # Allow filing update-manager bugs with obsolete packages + if report.get('Package', '').startswith('update-manager'): + os.environ['APPORT_IGNORE_OBSOLETE_PACKAGES'] = '1' + + # file bugs against OEM project for modified packages + if 'Package' in report: + v = report['Package'].split()[1] + oem_project = get_oem_project(report) + if oem_project and ('common' in v or oem_project in v): + report['CrashDB'] = 'canonical-oem' + + if 'Package' in report: + package = report['Package'].split()[0] + if package: + apport.hookutils.attach_conffiles(report, package, ui=ui) + + # do not file bugs against "upgrade-system" if it is not installed (LP#404727) + if package == 'upgrade-system' and 'not installed' in report['Package']: + report['UnreportableReason'] = 'You do not have the upgrade-system package installed. Please report package upgrade failures against the package that failed to install, or against upgrade-manager.' + + if 'Package' in report: + package = report['Package'].split()[0] + if package: + apport.hookutils.attach_upstart_overrides(report, package) + apport.hookutils.attach_upstart_logs(report, package) + + # build a duplicate signature tag for package reports + if report.get('ProblemType') == 'Package': + + if 'DpkgTerminalLog' in report: + # this was previously trimmed in check_attachment_for_errors + termlog = report['DpkgTerminalLog'] + elif 'VarLogDistupgradeApttermlog' in report: + termlog = get_attachment_contents(report, 'VarLogDistupgradeApttermlog') + else: + termlog = None + if termlog: + (package, version) = report['Package'].split(None, 1) + # for packages that run update-grub include /etc/default/grub + UPDATE_BOOT = ['friendly-recovery', 'linux', 'memtest86+', + 'plymouth', 'ubuntu-meta', 'virtualbox-ose'] + ug_failure = r'/etc/kernel/post(inst|rm)\.d/zz-update-grub exited with return code [1-9]+' + mkconfig_failure = r'/usr/sbin/grub-mkconfig.*/etc/default/grub: Syntax error' + if re.search(ug_failure, termlog) or re.search(mkconfig_failure, termlog): + if report['SourcePackage'] in UPDATE_BOOT: + apport.hookutils.attach_default_grub(report, 'EtcDefaultGrub') + dupe_sig = '' + dupe_sig_created = False + # messages we expect to see from a package manager (LP: #1692127) + pkg_mngr_msgs = re.compile(r"""^(Authenticating| + De-configuring| + Examining| + Installing| + Preparing| + Processing\ triggers| + Purging| + Removing| + Replaced| + Replacing| + Setting\ up| + Unpacking| + Would remove).* + \.\.\.\s*$""", re.X) + for line in termlog.split('\n'): + if pkg_mngr_msgs.search(line): + dupe_sig = '%s\n' % line + dupe_sig_created = True + continue + dupe_sig += '%s\n' % line + # this doesn't catch 'dpkg-divert: error' LP: #1581399 + if 'dpkg: error' in dupe_sig and line.startswith(' '): + if 'trying to overwrite' in line: + conflict_pkg = re.search('in package (.*) ', line) + if conflict_pkg and not apport.packaging.is_distro_package(conflict_pkg.group(1)): + report['UnreportableReason'] = _('An Ubuntu package has a file conflict with a package that is not a genuine Ubuntu package.') + add_tag(report, 'package-conflict') + if dupe_sig_created: + # the duplicate signature should be the first failure + report['DuplicateSignature'] = 'package:%s:%s\n%s' % (package, version, dupe_sig) + break + if dupe_sig: + if dpkg_log_without_error.find(dupe_sig) != -1: + report['UnreportableReason'] = _('You have already encountered this package installation failure.') + + +def match_error_messages(report): + # There are enough of these now that it is probably worth refactoring... + # -mdz + if report.get('ProblemType') == 'Package': + if 'failed to install/upgrade: corrupted filesystem tarfile' in report.get('Title', ''): + report['UnreportableReason'] = 'This failure was caused by a corrupted package download or file system corruption.' + + if 'is already installed and configured' in report.get('ErrorMessage', ''): + report['SourcePackage'] = 'dpkg' + + +def check_attachment_for_errors(report, attachment): + if report.get('ProblemType') == 'Package': + wrong_grub_msg = _('''Your system was initially configured with grub version 2, but you have removed it from your system in favor of grub 1 without configuring it. To ensure your bootloader configuration is updated whenever a new kernel is available, open a terminal and run: + + sudo apt-get install grub-pc +''') + + trim_dpkg_log(report) + log_file = get_attachment_contents(report, attachment) + + if 'DpkgTerminalLog' in report \ + and re.search(r'^Not creating /boot/grub/menu.lst as you wish', report['DpkgTerminalLog'], re.MULTILINE): + grub_hook_failure = True + else: + grub_hook_failure = False + + if report['Package'] not in ['grub', 'grub2']: + # linux-image postinst emits this when update-grub fails + # https://wiki.ubuntu.com/KernelTeam/DebuggingUpdateErrors + grub_errors = [r'^User postinst hook script \[.*update-grub\] exited with value', + r'^run-parts: /etc/kernel/post(inst|rm).d/zz-update-grub exited with return code [1-9]+', + r'^/usr/sbin/grub-probe: error'] + + for grub_error in grub_errors: + if attachment in report and re.search(grub_error, log_file, re.MULTILINE): + # File these reports on the grub package instead + grub_package = apport.packaging.get_file_package('/usr/sbin/update-grub') + if grub_package is None or grub_package == 'grub' and 'grub-probe' not in log_file: + report['SourcePackage'] = 'grub' + if os.path.exists('/boot/grub/grub.cfg') and grub_hook_failure: + report['UnreportableReason'] = wrong_grub_msg + else: + report['SourcePackage'] = 'grub2' + + if report['Package'] != 'initramfs-tools': + # update-initramfs emits this when it fails, usually invoked from the linux-image postinst + # https://wiki.ubuntu.com/KernelTeam/DebuggingUpdateErrors + if attachment in report and re.search(r'^update-initramfs: failed for ', log_file, re.MULTILINE): + # File these reports on the initramfs-tools package instead + report['SourcePackage'] = 'initramfs-tools' + + if report['Package'] in ['emacs22', 'emacs23', 'emacs-snapshot', 'xemacs21']: + # emacs add-on packages trigger byte compilation, which might fail + # we are very interested in reading the compilation log to determine + # where to reassign this report to + regex = r'^!! Byte-compilation for x?emacs\S+ failed!' + if attachment in report and re.search(regex, log_file, re.MULTILINE): + for line in log_file.split('\n'): + m = re.search(r'^!! and attach the file (\S+)', line) + if m: + path = m.group(1) + apport.hookutils.attach_file_if_exists(report, path) + + if report['Package'].startswith('linux-image-') and attachment in report: + # /etc/kernel/*.d failures from kernel package postinst + m = re.search(r'^run-parts: (/etc/kernel/\S+\.d/\S+) exited with return code \d+', log_file, re.MULTILINE) + if m: + path = m.group(1) + package = apport.packaging.get_file_package(path) + if package: + report['SourcePackage'] = package + report['ErrorMessage'] = m.group(0) + if package == 'grub-pc' and grub_hook_failure: + report['UnreportableReason'] = wrong_grub_msg + else: + report['UnreportableReason'] = 'This failure was caused by a program which did not originate from Ubuntu' + + error_message = report.get('ErrorMessage') + corrupt_package = 'This failure was caused by a corrupted package download or file system corruption.' + out_of_memory = 'This failure was caused by the system running out of memory.' + + if 'failed to install/upgrade: corrupted filesystem tarfile' in report.get('Title', ''): + report['UnreportableReason'] = corrupt_package + + if 'dependency problems - leaving unconfigured' in error_message: + report['UnreportableReason'] = 'This failure is a followup error from a previous package install failure.' + + if 'failed to allocate memory' in error_message: + report['UnreportableReason'] = out_of_memory + + if 'cannot access archive' in error_message: + report['UnreportableReason'] = corrupt_package + + if re.search(r'(failed to read|failed in write|short read) on buffer copy', error_message): + report['UnreportableReason'] = corrupt_package + + if re.search(r'(failed to read|failed to write|failed to seek|unexpected end of file or stream)', error_message): + report['UnreportableReason'] = corrupt_package + + if re.search(r'(--fsys-tarfile|dpkg-deb --control) returned error exit status 2', error_message): + report['UnreportableReason'] = corrupt_package + + if attachment in report and re.search(r'dpkg-deb: error.*is not a debian format archive', log_file, re.MULTILINE): + report['UnreportableReason'] = corrupt_package + + if 'is already installed and configured' in report.get('ErrorMessage', ''): + # there is insufficient information in the data currently gathered + # so gather more data + report['SourcePackage'] = 'dpkg' + report['AptdaemonVersion'] = apport.packaging.get_version('aptdaemon') + apport.hookutils.attach_file_if_exists(report, '/var/log/dpkg.log', 'DpkgLog') + apport.hookutils.attach_file_if_exists(report, '/var/log/apt/term.log', 'AptTermLog') + # gather filenames in /var/crash to see if there is one for dpkg + reports = glob('/var/crash/*') + if reports: + report['CrashReports'] = apport.hookutils.command_output( + ['stat', '-c', '%a:%u:%g:%s:%y:%x:%n'] + reports) + add_tag(report, 'already-installed') + + +def check_for_disk_error(report): + devs_to_check = [] + if 'Dmesg.txt' not in report and 'CurrentDmesg.txt' not in report: + return + if 'Df.txt' not in report: + return + df = report['Df.txt'] + device_error = False + for line in df: + line = line.strip('\n') + if line.endswith('/') or line.endswith('/usr') or line.endswith('/var'): + # without manipulation it'd look like /dev/sda1 + device = line.split(' ')[0].strip('0123456789') + device = device.replace('/dev/', '') + devs_to_check.append(device) + dmesg = report.get('CurrentDmesg.txt', report['Dmesg.txt']) + for line in dmesg: + line = line.strip('\n') + if 'I/O error' in line: + # no device in this line + if 'journal commit I/O error' in line: + continue + for dev in devs_to_check: + if re.search(dev, line): + error_device = dev + device_error = True + break + if device_error: + report['UnreportableReason'] = 'This failure was caused by a hardware error on /dev/%s' % error_device + + +def add_kernel_info(report): + # This includes the Ubuntu packaged kernel version + apport.hookutils.attach_file_if_exists(report, '/proc/version_signature', 'ProcVersionSignature') + + +def add_release_info(report): + # https://bugs.launchpad.net/bugs/364649 + media = '/var/log/installer/media-info' + apport.hookutils.attach_file_if_exists(report, media, 'InstallationMedia') + + # if we are running from a live system, add the build timestamp + apport.hookutils.attach_file_if_exists( + report, '/cdrom/.disk/info', 'LiveMediaBuild') + if os.path.exists('/cdrom/.disk/info'): + report['CasperVersion'] = apport.packaging.get_version('casper') + + # https://wiki.ubuntu.com/FoundationsTeam/Specs/OemTrackingId + apport.hookutils.attach_file_if_exists( + report, '/var/lib/ubuntu_dist_channel', 'DistributionChannelDescriptor') + + release_codename = apport.hookutils.command_output(['lsb_release', '-sc'], stderr=None) + if release_codename.startswith('Error'): + release_codename = None + else: + add_tag(report, release_codename) + + if os.path.exists(media): + mtime = os.stat(media).st_mtime + human_mtime = time.strftime('%Y-%m-%d', time.gmtime(mtime)) + delta = time.time() - mtime + report['InstallationDate'] = 'Installed on %s (%d days ago)' % (human_mtime, delta / 86400) + + log = '/var/log/dist-upgrade/main.log' + if os.path.exists(log): + mtime = os.stat(log).st_mtime + human_mtime = time.strftime('%Y-%m-%d', time.gmtime(mtime)) + delta = time.time() - mtime + + # Would be nice if this also showed which release was originally installed + report['UpgradeStatus'] = 'Upgraded to %s on %s (%d days ago)' % (release_codename, human_mtime, delta / 86400) + else: + report['UpgradeStatus'] = 'No upgrade log present (probably fresh install)' + + # check for system-image version on phablet builds + if apport.hookutils.command_available('system-image-cli'): + report['SystemImageInfo'] = '%s' % apport.hookutils.command_output( + ['system-image-cli', '-i'], stderr=None) + + +def add_proposed_info(report): + '''Tag if package comes from -proposed''' + + if 'Package' not in report: + return + try: + (package, version) = report['Package'].split()[:2] + except ValueError: + print('WARNING: malformed Package field: ' + report['Package']) + return + + apt_cache = subprocess.Popen(['apt-cache', 'showpkg', package], + stdout=subprocess.PIPE, + universal_newlines=True) + out = apt_cache.communicate()[0] + if apt_cache.returncode != 0: + print('WARNING: apt-cache showpkg %s failed' % package) + return + + found_proposed = False + found_updates = False + found_security = False + for line in out.splitlines(): + if line.startswith(version + ' ('): + if '-proposed_' in line: + found_proposed = True + if '-updates_' in line: + found_updates = True + if '-security' in line: + found_security = True + + if found_proposed and not found_updates and not found_security: + add_tag(report, 'package-from-proposed') + + +def add_cloud_info(report): + # EC2 and Ubuntu Enterprise Cloud instances + ec2_instance = False + for pkg in ('ec2-init', 'cloud-init'): + try: + if apport.packaging.get_version(pkg): + ec2_instance = True + break + except ValueError: + pass + if ec2_instance: + metadata_url = 'http://169.254.169.254/latest/meta-data/' + ami_id_url = urljoin(metadata_url, 'ami-id') + + try: + ami = urlopen(ami_id_url, timeout=5).read() + except: + ami = None + + if ami and ami.startswith(b'ami'): + add_tag(report, 'ec2-images') + fields = {'Ec2AMIManifest': 'ami-manifest-path', + 'Ec2Kernel': 'kernel-id', + 'Ec2Ramdisk': 'ramdisk-id', + 'Ec2InstanceType': 'instance-type', + 'Ec2AvailabilityZone': 'placement/availability-zone'} + + report['Ec2AMI'] = ami + for key, value in fields.items(): + try: + report[key] = urlopen(urljoin(metadata_url, value), timeout=5).read() + except: + report[key] = 'unavailable' + else: + add_tag(report, 'uec-images') + + +def add_tag(report, tag): + report.setdefault('Tags', '') + if tag in report['Tags'].split(): + return + report['Tags'] += ' ' + tag + + +def get_oem_project(report): + '''Determine OEM project name from Distribution Channel Descriptor + + Return None if it cannot be determined or does not exist. + ''' + dcd = report.get('DistributionChannelDescriptor', None) + if dcd and dcd.startswith('canonical-oem-'): + return dcd.split('-')[2] + return None + + +def trim_dpkg_log(report): + '''Trim DpkgTerminalLog to the most recent installation session.''' + + if 'DpkgTerminalLog' not in report: + return + if not report['DpkgTerminalLog'].strip(): + report['UnreportableReason'] = '/var/log/apt/term.log does not contain any data' + return + lines = [] + dpkg_log = report['DpkgTerminalLog'] + if isinstance(dpkg_log, bytes): + trim_re = re.compile(b'^\(.* ... \d+ .*\)$') + start_re = re.compile(b'^Log started:') + else: + trim_re = re.compile('^\(.* ... \d+ .*\)$') + start_re = re.compile('^Log started:') + for line in dpkg_log.splitlines(): + if start_re.match(line) or trim_re.match(line): + lines = [] + continue + lines.append(line) + # If trimming the log file fails, return the whole log file. + if not lines: + return + if isinstance(lines[0], str): + report['DpkgTerminalLog'] = '\n'.join(lines) + else: + report['DpkgTerminalLog'] = '\n'.join([str(line.decode('utf-8')) for line in lines]) + + +def get_attachment_contents(report, attachment): + if isinstance(report[attachment], problem_report.CompressedValue): + contents = report[attachment].get_value().decode('UTF-8') + else: + contents = report[attachment] + return contents + +if __name__ == '__main__': + import sys + + # for testing: update report file given on command line + if len(sys.argv) != 2: + sys.stderr.write('Usage for testing this hook: %s \n' % sys.argv[0]) + sys.exit(1) + + report_file = sys.argv[1] + + report = apport.Report() + with open(report_file, 'rb') as f: + report.load(f) + report_keys = set(report.keys()) + + new_report = report.copy() + add_info(new_report, None) + + new_report_keys = set(new_report.keys()) + + # Show differences + # N.B. Some differences will exist if the report file is not from your + # system because the hook runs against your local system. + changed = 0 + for key in sorted(report_keys | new_report_keys): + if key in new_report_keys and key not in report_keys: + print('+%s: %s' % (key, new_report[key])) + changed += 1 + elif key in report_keys and key not in new_report_keys: + print('-%s: (deleted)' % key) + changed += 1 + elif key in report_keys and key in new_report_keys: + if report[key] != new_report[key]: + print('~%s: (changed)' % key) + changed += 1 + print('%d items changed' % changed) --- apport-2.20.3.orig/data/general-hooks/wayland_session.py +++ apport-2.20.3/data/general-hooks/wayland_session.py @@ -0,0 +1,9 @@ +'''Detect if the current session is running under wayland''' + +import os + + +def add_info(report, ui): + if os.environ.get('WAYLAND_DISPLAY'): + report.setdefault('Tags', '') + report['Tags'] += ' wayland-session' --- apport-2.20.3.orig/data/iwlwifi_error_dump +++ apport-2.20.3/data/iwlwifi_error_dump @@ -24,7 +24,7 @@ sys.exit(1) pr = apport.Report('KernelCrash') -apport.add_package(apport.packaging.get_kernel_package()) +pr.add_package(apport.packaging.get_kernel_package()) pr['Title'] = 'iwlwifi firmware error' pr.add_os_info() --- apport-2.20.3.orig/data/package-hooks/source_debian-installer.py +++ apport-2.20.3/data/package-hooks/source_debian-installer.py @@ -0,0 +1,59 @@ +'''Apport package hook for the Debian installer. + +Copyright (C) 2011 Canonical Ltd. +Authors: Colin Watson , + Brian Murray ''' + +import os +from apport.hookutils import attach_hardware, command_available, command_output, attach_root_command_outputs + + +def add_installation_log(report, ident, name): + if os.path.exists('/var/log/installer/%s' % name): + f = '/var/log/installer/%s' % name + elif os.path.exists('/var/log/%s' % name): + f = '/var/log/%s' % name + else: + return + + if os.access(f, os.R_OK): + report[ident] = (f,) + else: + attach_root_command_outputs(report, {ident: "cat '%s'" % f}) + + +def add_info(report): + attach_hardware(report) + + report['DiskUsage'] = command_output(['df']) + report['MemoryUsage'] = command_output(['free']) + + if command_available('dmraid'): + attach_root_command_outputs(report, {'DmraidSets': 'dmraid -s', + 'DmraidDevices': 'dmraid -r'}) + if command_available('dmsetup'): + attach_root_command_outputs(report, {'DeviceMapperTables': 'dmsetup table'}) + + try: + installer_version = open('/var/log/installer/version') + for line in installer_version: + if line.startswith('ubiquity '): + # File these reports on the ubiquity package instead + report['SourcePackage'] = 'ubiquity' + break + installer_version.close() + except IOError: + pass + + add_installation_log(report, 'DIPartman', 'partman') + add_installation_log(report, 'DISyslog', 'syslog') + + +if __name__ == '__main__': + report = {} + add_info(report) + for key in report: + if isinstance(report[key], type('')): + print('%s: %s' % (key, report[key].split('\n', 1)[0])) + else: + print('%s: %s' % (key, type(report[key]))) --- apport-2.20.3.orig/data/package-hooks/source_linux-nexus7.py +++ apport-2.20.3/data/package-hooks/source_linux-nexus7.py @@ -0,0 +1,25 @@ +'''Apport package hook for the Linux nexus7 kernel. + +(c) 2012 Canonical Ltd. +Author: Martin Pitt + +This program is free software; you can redistribute it and/or modify it +under the terms of the GNU General Public License as published by the +Free Software Foundation; either version 2 of the License, or (at your +option) any later version. See http://www.gnu.org/copyleft/gpl.html for +the full text of the license. +''' + + +def add_info(report, ui): + # direct bugs to the ubuntu-nexus7 project + report['CrashDB'] = '''{"impl": "launchpad", + "project": "ubuntu-nexus7", + "bug_pattern_url": "http://people.canonical.com/~ubuntu-archive/bugpatterns/bugpatterns.xml", + }''' + + # collect information from original kernel hook + report.add_hooks_info(ui, srcpackage='linux') + + # add additional tags + report['Tags'] += ' mobile nexus7' --- apport-2.20.3.orig/data/package-hooks/source_linux.py +++ apport-2.20.3/data/package-hooks/source_linux.py @@ -0,0 +1,134 @@ +'''Apport package hook for the Linux kernel. + +(c) 2008 Canonical Ltd. +Contributors: +Matt Zimmerman +Martin Pitt +Brian Murray + +This program is free software; you can redistribute it and/or modify it +under the terms of the GNU General Public License as published by the +Free Software Foundation; either version 2 of the License, or (at your +option) any later version. See http://www.gnu.org/copyleft/gpl.html for +the full text of the license. +''' + +import os.path, re +import apport +import apport.hookutils + +SUBMIT_SCRIPT = "/usr/bin/kerneloops-submit" + + +def add_info(report, ui): + + # If running an upstream kernel, instruct reporter to file bug upstream + abi = re.search("-(.*?)-", report['Uname']) + if abi and (abi.group(1) == '999' or re.search("^0\d", abi.group(1))): + ui.information("It appears you are currently running a mainline kernel. It would be better to report this bug upstream at http://bugzilla.kernel.org/ so that the upstream kernel developers are aware of the issue. If you'd still like to file a bug against the Ubuntu kernel, please boot with an official Ubuntu kernel and re-file.") + report['UnreportableReason'] = 'The running kernel is not an Ubuntu kernel' + return + + version_signature = report.get('ProcVersionSignature', '') + if not version_signature.startswith('Ubuntu ') and 'CrashDB' not in report: + report['UnreportableReason'] = 'The running kernel is not an Ubuntu kernel' + return + + # Prevent reports against the linux-meta family, redirect to the main package. + if report['SourcePackage'].startswith('linux-meta'): + report['SourcePackage'] = report['SourcePackage'].replace('linux-meta', 'linux', 1) + + report.setdefault('Tags', '') + + # Tag up back ported kernel reports for easy identification + if report['SourcePackage'].startswith('linux-lts-'): + report['Tags'] += ' qa-kernel-lts-testing' + + apport.hookutils.attach_hardware(report) + apport.hookutils.attach_alsa(report) + apport.hookutils.attach_wifi(report) + apport.hookutils.attach_file(report, '/proc/fb', 'ProcFB') + + staging_drivers = re.findall("(\w+): module is from the staging directory", + report['CurrentDmesg']) + if staging_drivers: + staging_drivers = list(set(staging_drivers)) + report['StagingDrivers'] = ' '.join(staging_drivers) + report['Tags'] += ' staging' + # Only if there is an existing title prepend '[STAGING]'. + # Changed to prevent bug titles with just '[STAGING] '. + if report.get('Title'): + report['Title'] = '[STAGING] ' + report.get('Title') + + apport.hookutils.attach_file_if_exists(report, "/etc/initramfs-tools/conf.d/resume", key="HibernationDevice") + + uname_release = os.uname()[2] + lrm_package_name = 'linux-restricted-modules-%s' % uname_release + lbm_package_name = 'linux-backports-modules-%s' % uname_release + + apport.hookutils.attach_related_packages(report, [lrm_package_name, lbm_package_name, 'linux-firmware']) + + if ('Failure' in report and report['Failure'] == 'oops' and + 'OopsText' in report and os.path.exists(SUBMIT_SCRIPT)): + # tag kerneloopses with the version of the kerneloops package + apport.hookutils.attach_related_packages(report, ['kerneloops-daemon']) + oopstext = report['OopsText'] + dupe_sig1 = None + dupe_sig2 = None + for line in oopstext.splitlines(): + if line.startswith('BUG:'): + bug = re.compile('at [0-9a-f]+$') + dupe_sig1 = bug.sub('at location', line) + rip = re.compile('^[RE]?IP:') + if re.search(rip, line): + loc = re.compile('\[<[0-9a-f]+>\]') + dupe_sig2 = loc.sub('location', line) + if dupe_sig1 and dupe_sig2: + report['DuplicateSignature'] = '%s %s' % (dupe_sig1, dupe_sig2) + # it's from kerneloops, ask the user whether to submit there as well + if ui: + # Some OopsText begin with "--- [ cut here ] ---", so remove it + oopstext = re.sub("---.*\n", "", oopstext) + first_line = re.match(".*\n", oopstext) + ip = re.search("(R|E)?IP\:.*\n", oopstext) + kernel_driver = re.search("(R|E)?IP(:| is at) .*\[(.*)\]\n", oopstext) + call_trace = re.search("Call Trace(.*\n){,10}", oopstext) + oops = '' + if first_line: + oops += first_line.group(0) + if ip: + oops += ip.group(0) + if call_trace: + oops += call_trace.group(0) + if kernel_driver: + report['Tags'] += ' kernel-driver-%s' % kernel_driver.group(3) + # 2012-01-13 - disable submission question as kerneloops.org is + # down + # if ui.yesno("This report may also be submitted to " + # "http://kerneloops.org/ in order to help collect aggregate " + # "information about kernel problems. This aids in identifying " + # "widespread issues and problematic areas. A condensed " + # "summary of the Oops is shown below. Would you like to submit " + # "information about this crash to kerneloops.org?" + # "\n\n%s" % oops): + # text = report['OopsText'] + # proc = subprocess.Popen(SUBMIT_SCRIPT, stdin=subprocess.PIPE) + # proc.communicate(text) + elif 'Failure' in report and ('resume' in report['Failure'] or + 'suspend' in report['Failure']): + crash_signature = report.crash_signature() + if crash_signature: + report['DuplicateSignature'] = crash_signature + + if report.get('ProblemType') == 'Package': + # in case there is a failure with a grub script + apport.hookutils.attach_related_packages(report, ['grub-pc']) + +if __name__ == '__main__': + r = apport.Report() + r.add_proc_info() + r.add_os_info() + r['ProcVersionSignature'] = 'Ubuntu 3.4.0' + add_info(r, None) + for k, v in r.items(): + print('%s: %s' % (k, v)) --- apport-2.20.3.orig/data/package-hooks/source_ubiquity.py +++ apport-2.20.3/data/package-hooks/source_ubiquity.py @@ -0,0 +1,155 @@ +'''Apport package hook for the ubiquity live CD installer. + +Copyright (C) 2009 Canonical Ltd. +Authors: Colin Watson , + Brian Murray ''' + +import apport.hookutils +import os.path +import re + + +def add_installation_log(report, ident, name): + f = False + for try_location in ('/var/log/installer/%s', + '/var/log/%s', + '/var/log/upstart/%s'): + if os.path.exists(try_location % name): + f = try_location % name + break + if not f: + return + + if os.access(f, os.R_OK): + with open(f, 'rb') as f: + report[ident] = f.read().decode('UTF-8', 'replace') + elif os.path.exists(f): + apport.hookutils.attach_root_command_outputs(report, {ident: "cat '%s'" % f}) + + +def prepare_duplicate_signature(syslog, collect_grub, collect_trace): + collect = '' + for line in syslog.split('\n'): + if collect_grub: + if 'grub-installer:' in line and collect == "": + collect = ' '.join(line.split(' ')[4:]) + '\n' + continue + elif 'grub-installer:' in line and collect != "": + collect += ' '.join(line.split(' ')[4:]) + '\n' + continue + if not collect_trace and collect != '': + return collect + if 'Traceback (most recent call last):' in line and \ + collect_grub: + collect += ' '.join(line.split(' ')[5:]) + '\n' + continue + if 'Traceback (most recent call last):' in line and \ + not collect_grub: + collect = ' '.join(line.split(' ')[5:]) + '\n' + continue + if len(line.split(' ')[5:]) == 1 and 'Traceback' in collect: + if collect != '': + return collect + if 'Traceback' not in collect: + continue + collect += ' '.join(line.split(' ')[5:]) + '\n' + + +def add_info(report, ui): + add_installation_log(report, 'UbiquitySyslog', 'syslog') + syslog = report['UbiquitySyslog'] + if 'Buffer I/O error on device' in syslog: + if re.search('Attached .* CD-ROM (\w+)', syslog): + cd_drive = re.search('Attached .* CD-ROM (\w+)', syslog).group(1) + cd_error = re.search('Buffer I/O error on device %s' % cd_drive, syslog) + else: + cd_error = None + if cd_error: + ui.information("The system log from your installation contains an error. The specific error commonly occurs when there is an issue with the media from which you were installing. This can happen when your media is dirty or damaged or when you've burned the media at a high speed. Please try cleaning the media and or burning new media at a lower speed. In the event that you continue to encounter these errors it may be an issue with your CD / DVD drive.") + raise StopIteration + if 'I/O error, dev' in syslog: + # check for either usb stick (install media) or hard disk I/O errors + if re.search('I/O error, dev (\w+)', syslog): + error_disk = re.search('I/O error, dev (\w+)', syslog).group(1) + mount = apport.hookutils.command_output(['grep', '%s' % error_disk, '/proc/mounts']) + if 'target' in mount: + ui.information("The system log from your installation contains an error. The specific error commonly occurs when there is an issue with the disk to which you are trying to install Ubuntu. It is recommended that you back up important data on your disk and investigate the situation. Measures you might take include checking cable connections for your disks and using software tools to investigate the health of your hardware.") + raise StopIteration + if 'cdrom' in mount: + ui.information("The system log from your installation contains an error. The specific error commonly occurs when there is an issue with the media from which you were installing. Please try creating the USB stick you were installing from again or try installing from a different USB stick.") + raise StopIteration + if 'SQUASHFS error: Unable to read' in syslog: + ui.information("The system log from your installation contains an error. The specific error commonly occurs when there is an issue with the media from which you were installing. This can happen when your media is dirty or damaged or when you've burned the media at a high speed. Please try cleaning the media and or burning new media at a lower speed. In the event that you continue to encounter these errors it may be an issue with your CD / DVD drive.") + raise StopIteration + + if 'Kernel command line' in syslog: + install_cmdline = re.search('Kernel command line: (.*)', syslog).group(1) + else: + install_cmdline = None + if install_cmdline: + report['InstallCmdLine'] = install_cmdline + + if 'Traceback' not in report: + collect_grub = False + collect_trace = False + if 'grub-install ran successfully' not in syslog and 'grub-installer:' in syslog: + collect_grub = True + if 'Traceback' in syslog: + collect_trace = True + if report['ProblemType'] != 'Bug' and collect_grub or \ + report['ProblemType'] != 'Bug' and collect_trace: + duplicate_signature = prepare_duplicate_signature(syslog, collect_grub, collect_trace) + if duplicate_signature: + report['DuplicateSignature'] = duplicate_signature + if collect_grub: + report['SourcePackage'] = 'grub-installer' + + match = re.search('ubiquity.*Ubiquity (.*)\n', syslog) + if match: + match = match.group(1) + report.setdefault('Tags', '') + if match: + report['Tags'] += ' ubiquity-%s' % match.split()[0] + + # tag bug reports where people choose to "upgrade" their install of Ubuntu + if re.search('UpgradeSystem\(\) was called with safe mode', syslog): + report['Tags'] += ' ubiquity-upgrade' + + add_installation_log(report, 'UbiquityPartman', 'partman') + + debug_log = '/var/log/installer/debug' + debug_mode = False + if os.path.exists(debug_log): + try: + fp = open(debug_log, 'r') + except (OSError, IOError): + pass + else: + with fp: + for line in fp: + if line.startswith('debconf (developer)'): + debug_mode = True + break + if debug_mode: + response = ui.yesno("The debug log file from your installation would help us a lot but includes the password you used for your user when installing Ubuntu. Do you want to include this log file?") + if response is None: + raise StopIteration + if response: + add_installation_log(report, 'UbiquityDebug', 'debug') + else: + add_installation_log(report, 'UbiquityDebug', 'debug') + + add_installation_log(report, 'UbiquityDm', 'dm') + add_installation_log(report, 'UpstartUbiquity', 'ubiquity.log') + + # add seed name as Tag so we know which image was used + with open('/proc/cmdline', 'r') as f: + cmdline = f.read() + match = re.search('([^/]+)\.seed', cmdline) + if match: + report['Tags'] += ' ' + match.group(1) + + add_installation_log(report, 'Casper', 'casper.log') + add_installation_log(report, 'OemConfigLog', 'oem-config.log') + if 'OemConfigLog' in report: + report['Tags'] += ' oem-config' --- apport-2.20.3.orig/debhelper/apport.pm +++ apport-2.20.3/debhelper/apport.pm @@ -0,0 +1,10 @@ +#!/usr/bin/perl +# debhelper sequence file for apport + +use warnings; +use strict; +use Debian::Debhelper::Dh_Lib; + +insert_after("dh_bugfiles", "dh_apport"); + +1; --- apport-2.20.3.orig/debhelper/dh_apport +++ apport-2.20.3/debhelper/dh_apport @@ -0,0 +1,83 @@ +#!/usr/bin/perl -w + +=head1 NAME + +dh_installapport - install apport package hooks + +=cut + +use strict; + +use Debian::Debhelper::Dh_Lib; + +=head1 SYNOPSIS + +B [S>] + +=head1 DESCRIPTION + +dh_apport is a debhelper program that installs apport package hooks into +package build directories. + +=head1 FILES + +=over 4 + +=item debian/I.apport + +Installed into /usr/share/apport/package-hooks/I.py in the package +build directory. This file is used to control apport's bug filing for this +package. + +=item debian/source.apport + +Installed into /usr/share/apport/package-hooks/source_I.py (where +I is the current source package name) in the package build directory of +the first package dh_apport is told to act on. By default, this is the first +binary package in debian/control, but if you use -p, -i, or -a flags, it +will be the first package specified by those flags. This file is used to +control apport's bug filing for all binary packages built by this source +package. + +=back + +=cut + +init(); + +foreach my $package (@{$dh{DOPACKAGES}}) { + next if is_udeb($package); + + my $tmp=tmpdir($package); + my $hooksdir="$tmp/usr/share/apport/package-hooks"; + my $file=pkgfile($package,"apport"); + + if ($file ne '') { + if (! -d $hooksdir) { + doit("install","-d",$hooksdir); + } + doit("install","-p","-m644",$file,"$hooksdir/$package.py"); + } + + if (-e "debian/source.apport" && $package eq $dh{FIRSTPACKAGE}) { + if (! -d $hooksdir) { + doit("install","-d",$hooksdir); + } + my $src=sourcepackage(); + doit("install","-p","-m644","debian/source.apport","$hooksdir/source_$src.py"); + } +} + +=head1 SEE ALSO + +L + +This program is a part of apport. + +=head1 AUTHOR + +Colin Watson + +Copyright (C) 2009 Canonical Ltd., licensed under the GNU GPL v2 or later. + +=cut --- apport-2.20.3.orig/debian/apport-gtk.install +++ apport-2.20.3/debian/apport-gtk.install @@ -0,0 +1,2 @@ +usr/share/apport/*gtk* +usr/share/applications/*gtk* --- apport-2.20.3.orig/debian/apport-kde.install +++ apport-2.20.3/debian/apport-kde.install @@ -0,0 +1,9 @@ +usr/share/apport/*kde* +usr/share/apport/progress.ui +usr/share/apport/error.ui +usr/share/apport/bugreport.ui +usr/share/apport/choices.ui +usr/share/apport/userpass.ui +usr/share/apport/spinner.gif +usr/share/applications/apport-kde-mime.desktop +usr/share/applications/apport-kde-mimelnk.desktop usr/share/mimelnk/text --- apport-2.20.3.orig/debian/apport-noui.dirs +++ apport-2.20.3/debian/apport-noui.dirs @@ -0,0 +1 @@ +/var/lib/apport --- apport-2.20.3.orig/debian/apport-noui.install +++ apport-2.20.3/debian/apport-noui.install @@ -0,0 +1 @@ +debian/apport-noui.path /lib/systemd/system --- apport-2.20.3.orig/debian/apport-noui.path +++ apport-2.20.3/debian/apport-noui.path @@ -0,0 +1,9 @@ +[Unit] +Description=Process error reports when automatic reporting is enabled (file watch) +ConditionPathExists=/var/lib/apport/autoreport + +[Path] +PathExistsGlob=/var/crash/*.crash + +[Install] +WantedBy=paths.target --- apport-2.20.3.orig/debian/apport-noui.postinst +++ apport-2.20.3/debian/apport-noui.postinst @@ -0,0 +1,7 @@ +#!/bin/sh + +set -e + +touch /var/lib/apport/autoreport + +#DEBHELPER# --- apport-2.20.3.orig/debian/apport-noui.prerm +++ apport-2.20.3/debian/apport-noui.prerm @@ -0,0 +1,9 @@ +#!/bin/sh + +set -e + +if [ "$1" = remove ]; then + rm -f /var/lib/apport/autoreport +fi + +#DEBHELPER# --- apport-2.20.3.orig/debian/apport-noui.service +++ apport-2.20.3/debian/apport-noui.service @@ -0,0 +1,7 @@ +[Unit] +Description=Process error reports when automatic reporting is enabled +ConditionPathExists=/var/lib/apport/autoreport + +[Service] +Type=oneshot +ExecStart=/usr/share/apport/whoopsie-upload-all --- apport-2.20.3.orig/debian/apport-noui.upstart +++ apport-2.20.3/debian/apport-noui.upstart @@ -0,0 +1,13 @@ +description "Process error reports when automatic reporting is enabled" +author "Evan Dandrea " + +start on ( + file FILE=/var/crash/*.crash EVENT=create +) + + +instance $MATCH +script + [ -e /var/lib/apport/autoreport ] || exit 0 + /lib/udev/watershed /usr/share/apport/whoopsie-upload-all +end script --- apport-2.20.3.orig/debian/apport-retrace.install +++ apport-2.20.3/debian/apport-retrace.install @@ -0,0 +1,5 @@ +usr/bin/apport-retrace +usr/bin/dupdb-admin +usr/bin/crash-digger +usr/share/man/man1/apport-retrace.1 +usr/share/man/man1/dupdb-admin.1 --- apport-2.20.3.orig/debian/apport-valgrind.install +++ apport-2.20.3/debian/apport-valgrind.install @@ -0,0 +1,2 @@ +usr/bin/apport-valgrind +usr/share/man/man1/apport-valgrind.1 --- apport-2.20.3.orig/debian/apport.install +++ apport-2.20.3/debian/apport.install @@ -0,0 +1,36 @@ +etc +lib/udev/ +lib/systemd/ +usr/share/apport/apport +usr/share/apport/apport-checkreports +usr/share/apport/package_hook +usr/share/apport/kernel_crashdump +usr/share/apport/kernel_oops +usr/share/apport/gcc_ice_hook +usr/share/apport/apportcheckresume +usr/share/apport/unkillable_shutdown +usr/share/apport/dump_acpi_tables.py +usr/share/apport/is-enabled +usr/share/apport/java_uncaught_exception +usr/share/apport/recoverable_problem +usr/share/apport/root_info_wrapper +usr/share/apport/whoopsie-upload-all +usr/share/apport/iwlwifi_error_dump +usr/share/doc/apport +usr/share/locale +usr/share/icons +usr/share/mime +usr/share/polkit-1 +usr/share/apport/package-hooks +usr/share/apport/general-hooks +usr/share/man/man1/apport-unpack.1 +usr/share/man/man1/apport-bug.1 +usr/share/man/man1/apport-cli.1 +usr/bin/apport-cli +usr/bin/apport-unpack +usr/bin/apport-bug +usr/bin/apport-collect +usr/lib/pm-utils +../../java/apport.jar usr/share/apport/ +../../java/crash.jar usr/share/apport/testsuite/ +../../java/crash.class usr/share/apport/testsuite/ --- apport-2.20.3.orig/debian/apport.links +++ apport-2.20.3/debian/apport.links @@ -0,0 +1,4 @@ +/usr/share/apport/package-hooks/source_linux.py /usr/share/apport/package-hooks/source_linux-meta.py +/usr/bin/apport-bug /usr/bin/ubuntu-bug +/usr/share/man/man1/apport-bug.1.gz /usr/share/man/man1/ubuntu-bug.1.gz +/usr/share/man/man1/apport-bug.1.gz /usr/share/man/man1/apport-collect.1.gz --- apport-2.20.3.orig/debian/apport.logrotate +++ apport-2.20.3/debian/apport.logrotate @@ -0,0 +1,9 @@ +/var/log/apport.log { + daily + rotate 7 + delaycompress + compress + notifempty + missingok +} + --- apport-2.20.3.orig/debian/apport.maintscript +++ apport-2.20.3/debian/apport.maintscript @@ -0,0 +1 @@ +rm_conffile /etc/apport/native-origins.d/lts-q-backports 2.5.1-0ubuntu8~ --- apport-2.20.3.orig/debian/apport.postinst +++ apport-2.20.3/debian/apport.postinst @@ -0,0 +1,10 @@ +#!/bin/sh +set -e + +if [ "$1" = configure ]; then + # directory is required for package failures even if apport is disabled and + # thus the upstart job does not run + mkdir -p -m 1777 /var/crash +fi + +#DEBHELPER# --- apport-2.20.3.orig/debian/apport.upstart +++ apport-2.20.3/debian/apport.upstart @@ -0,0 +1,58 @@ +# apport - automatic crash report generation +# +# While this job is active, core dumps will captured by apport and +# used to generate automatic crash reports. + +description "automatic crash report generation" + +start on runlevel [2345] +stop on runlevel [!2345] + +env enabled=1 + +pre-start script + # don't start in containers + systemd-detect-virt --quiet --container && exit 0 || true + + . /etc/default/apport + [ "$enabled" = "1" ] || [ "$force_start" = "1" ] || exit 0 + + mkdir -p -m 1777 /var/crash + + # check for kernel crash dump, convert it to apport report + if [ -e /var/crash/vmcore ] || [ -n "`ls /var/crash | egrep ^[0-9]{12}$`" ] + then + /usr/share/apport/kernel_crashdump || true + fi + + # check for incomplete suspend/resume or hibernate + if [ -e /var/lib/pm-utils/status ] + then + /usr/share/apport/apportcheckresume || true + rm -f /var/lib/pm-utils/status + rm -f /var/lib/pm-utils/resume-hang.log + fi + + echo "|/usr/share/apport/apport %p %s %c %P" > /proc/sys/kernel/core_pattern + echo 2 > /proc/sys/fs/suid_dumpable +end script + +post-stop script + # don't stop in containers + systemd-detect-virt --quiet --container && exit 0 || true + + # Check for a hung resume. If we find one try and grab everything + # we can to aid in its discovery + if [ -e /var/lib/pm-utils/status ] + then + ps -wwef > /var/lib/pm-utils/resume-hang.log + fi + + if [ "`dd if=/proc/sys/kernel/core_pattern count=1 bs=1 2>/dev/null`" != "|" ] + then + exit 1 + else + echo 0 > /proc/sys/fs/suid_dumpable + echo "core" > /proc/sys/kernel/core_pattern + fi +end script --- apport-2.20.3.orig/debian/changelog +++ apport-2.20.3/debian/changelog @@ -0,0 +1,9145 @@ +apport (2.20.3-0ubuntu8.5) yakkety; urgency=medium + + * test/test_signal_crashes.py: a ulimit of 1M bytes isn't enough to produce + a core file anymore so bump it to 10M. + + -- Brian Murray Mon, 26 Jun 2017 14:56:05 -0700 + +apport (2.20.3-0ubuntu8.4) yakkety; urgency=medium + + * data/general-hooks/ubuntu.py: Modify how a duplicate signature is created + for package installation failures. (LP: #1692127) + + -- Brian Murray Mon, 19 Jun 2017 16:50:46 -0700 + +apport (2.20.3-0ubuntu8.3) yakkety; urgency=medium + + * Resolve autopkgtest failures in test_backend_apt_dpkg.py due to issues + with apt key ring. Thanks to Dimitri John Ledkov for the patch. + (LP: #1651623) + * Disable report.test_add_gdb_info_abort_glib test case for now, as the + glib assertion message is broken under current Ubuntu (LP: #1689344) + * data/general/ubuntu.py: Collect a minimal version of /proc/cpuinfo in + every report. (LP: #1673557) + + -- Brian Murray Wed, 10 May 2017 18:10:32 -0700 + +apport (2.20.3-0ubuntu8.2) yakkety-security; urgency=medium + + [ Marc Deslauriers ] + * SECURITY UPDATE: code execution via malicious crash files + - Use ast.literal_eval in apport/ui.py, added test to test/test_ui.py. + - No CVE number + - LP: #1648806 + * SECURITY UPDATE: path traversal vulnerability with hooks execution + - Clean path in apport/report.py, added test to test/test_ui.py. + - No CVE number + - LP: #1648806 + + [ Steve Beattie ] + * SECURITY UPDATE: code execution via malicious crash files + - Only offer restarting the application when processing a + crash file in /var/crash in apport/ui.py, gtk/apport-gtk, + and kde/apport-kde. Add testcases to test/test_ui.py, + test/test_ui_gtk.py, and test_ui_kde.py. + - No CVE number + - LP: #1648806 + + -- Marc Deslauriers Tue, 13 Dec 2016 10:55:09 -0800 + +apport (2.20.3-0ubuntu8) yakkety; urgency=medium + + * Prefer pycodestyle build dependency over pep8. + * debian/tests/upstream-system: Create and export $GNUPGHOME, to work with + gnupg2. + * apport-gtk: Specify module version with GI imports to avoid warnings. + Thanks Anatoly Techtonik. (LP: #1502173) + * Disable Launchpad crash upload for final Ubuntu 16.10. + + -- Martin Pitt Mon, 10 Oct 2016 14:28:17 +0200 + +apport (2.20.3-0ubuntu7) yakkety; urgency=medium + + * Merge from trunk: + - test/test_report.py: Slightly relax stack trace checks to also work with + glibc 2.24. + + -- Martin Pitt Mon, 15 Aug 2016 08:37:34 +0200 + +apport (2.20.3-0ubuntu6) yakkety; urgency=medium + + * packaging-apt-dpkg.py: Change the proxy settings to use DIRECT instead + of direct. The latter never really worked, but APT did not complain + about it. + + -- Julian Andres Klode Fri, 12 Aug 2016 19:22:23 +0000 + +apport (2.20.3-0ubuntu5) yakkety; urgency=medium + + * packaging-apt-dpkg.py: Explicitly set Dir::State::Status to the host + dpkg status file for get_source_tree() to work with apt 1.3~pre4 + + -- Julian Andres Klode Fri, 05 Aug 2016 10:47:11 +0000 + +apport (2.20.3-0ubuntu4) yakkety; urgency=medium + + * test_backend_apt_dpkg.py: Expect trusted.gpg.d in armhf config dir + + -- Julian Andres Klode Thu, 04 Aug 2016 08:15:07 +0000 + +apport (2.20.3-0ubuntu3) yakkety; urgency=medium + + * test_backend_apt_dpkg.py: Adjust for new error message on missing + repositories, it now says "does not have a Release file" + * test_backend_apt_dpkg.py: Create a symlink for trusted.gpg.d in the + armhf config dir, as the backend looks for trusted.gpg.d relative to + the sources.list location in the config dir + + -- Julian Andres Klode Wed, 03 Aug 2016 23:22:54 +0000 + +apport (2.20.3-0ubuntu2) yakkety; urgency=medium + + * test_backend_apt_dpkg.py: Move tests from Ubuntu 15.10 "wily" (which is + EOL now) to 16.04 LTS "xenial". (Cherry-picked from trunk) + + -- Martin Pitt Sun, 31 Jul 2016 23:04:45 +0200 + +apport (2.20.3-0ubuntu1) yakkety; urgency=medium + + [ Hans Joachim Desserud ] + * Fix typo (cehcking -> checking) (LP: #1603463). + + [ Martin Pitt ] + * New upstream release: + - problem_report.py: Fail with proper exception when trying to assign a + list to a report key, or when trying to assing a tuple with more than 4 + entries. (LP: #1596713) + - test_backend_apt_dpkg.py: Install GPG key for ddebs.ubuntu.com to avoid + apt authentication errors. + * Bump Standards-Version to 3.9.8 (no changes necessary). + + -- Martin Pitt Thu, 28 Jul 2016 14:10:46 +0200 + +apport (2.20.2-0ubuntu1) yakkety; urgency=medium + + [ Brian Murray ] + * data/general-hooks/ubuntu.py: tag bug reports 'apport-hook-error' if they + have an attachment from an apport hook which crashed. + + [ Martin Pitt ] + * New upstream release. Changes since our previous snapshot: + - Don't ignore OSError in Report.add_gdb_info(), as we do want to fail with an + useful error message if gdb cannot be called in apport-retrace. Move the + catching to the UI as not having gdb installed is still fine for reporting + clients. (LP: #1579949) + - Show gdb error messages in Report.add_gdb_info() OSError exception when gdb + fails. (LP: #1579897) + - hookutils, attach_root_command_outputs(): Return str again, like before + 2.15.2. (LP: #1370259) + - Stop issuing "set architecture" gdb commands on ARM and Power; these only + applied to 32 bit platforms and are apparently not needed any more with + recent gdb versions. (LP: #1585702) + - Disable report.test_add_gdb_info_abort_libnih test case for now, as libnih + is broken under current Ubuntu (LP: #1580601) + + -- Martin Pitt Sun, 19 Jun 2016 22:17:35 +0200 + +apport (2.20.1-0ubuntu4) yakkety; urgency=medium + + * data/general-hooks/ubuntu.py: Fix stacktrace when parsing + DpkgTerminalLog.txt. (LP: #1548421) + * data/general-hooks/ubuntu.py: Restore starting package problem duplicate + signatures with the word package, the package name, and its version. + (LP: #1581682) + + -- Brian Murray Mon, 16 May 2016 14:16:15 -0700 + +apport (2.20.1-0ubuntu3) yakkety; urgency=medium + + * debian/control: Adjust Vcs-Bzr: for yakkety branch. + * Re-enable Launchpad crash reports for yakkety. + + -- Martin Pitt Mon, 02 May 2016 12:10:15 -0500 + +apport (2.20.1-0ubuntu2) xenial; urgency=medium + + * Merge fixes from trunk: + - problem_report.py: Make assertion of invalid key names more verbose. + - hookutils.py: Fix generation of valid report key names from arbitrary + paths in attach_file() and related functions. This will now replace all + invalid characters with dots, not just a few known invalid ones. + (LP: #1566975) + - problem_report.py: Instead of AssertionError, raise a ValueError for + invalid key names and TypeError for invalid kinds of values. Thanks + Barry Warsaw. + * Disable Launchpad crash upload for final Ubuntu 16.04. + + -- Martin Pitt Wed, 13 Apr 2016 23:53:46 +0200 + +apport (2.20.1-0ubuntu1) xenial; urgency=medium + + * New upstream release. Changes since our previous snapshot: + - crash-digger: Untag bugs which cannot be retraced instead of stopping + crash-digger. This led to too many pointless manual restarts on broken bug + reports. + * Disambiguate overly generic Python exceptions in duplicate signature + computation: dbus-glib's DBusException wraps a "real" server-side + exception, so add the class of that to disambiguate different crashes; + for OSError that is not a known subclass like FileNotFoundError, add the + errno. (LP: #989819) + + -- Martin Pitt Thu, 31 Mar 2016 16:16:37 +0200 + +apport (2.20-0ubuntu3) xenial; urgency=medium + + * Relax report.test_add_gdb_info gdb warning check, as this changed with gdb + 7.10.90. + + -- Martin Pitt Tue, 16 Feb 2016 08:41:10 +0100 + +apport (2.20-0ubuntu2) xenial; urgency=medium + + * Fix signal_crashes.test_modify_after_start test when running as root. + + -- Martin Pitt Mon, 15 Feb 2016 11:49:56 +0100 + +apport (2.20-0ubuntu1) xenial; urgency=medium + + * New upstream release. + - Reimplement forwarding crashes into a container, via activating the new + apport-forward.socket in the container and handing over the core dump + fd. This is a much safer way than the original implementation with + nsexec. Thanks Stéphane Graber! (LP: #1445064) + * Drop long-obsolete sysv-rc dependency. + * Add python3-systemd recommendation to apport, to make crash report + generation work in containers. + * Install new systemd units into apport package. + + -- Martin Pitt Sun, 14 Feb 2016 13:41:36 +0100 + +apport (2.19.4-0ubuntu2) xenial; urgency=medium + + * debian/apport.upstart: Call systemd-detect-virt instead of the + Ubuntu specific running-in-container wrapper. (LP: #1539016) + + -- Martin Pitt Thu, 28 Jan 2016 14:58:06 +0100 + +apport (2.19.4-0ubuntu1) xenial; urgency=medium + + * New upstream bug fix release: + - Fix fileutils.test_find_package_desktopfile test for symlinks and other + unowned files in /usr/share/applications/. + - Fix ui.test_run_crash_anonymity test case to not fail if the base64 + encoded core dump happens to contain the user name, as that's just by + chance. - Fix test_hooks.py for unreleased gcc versions which have a + different --version format. + - hookutils.py, attach_hardware(): Stop attaching /var/log/udev. This was + an upstart-ism, mostly redundant with the udev db and is not being + written under systemd. (LP: #1537211) + * etc/apport/crashdb.conf: Enable crash reports on Launchpad for xenial. + + -- Martin Pitt Tue, 26 Jan 2016 15:37:44 +0100 + +apport (2.19.3-0ubuntu3) xenial; urgency=medium + + * data/general-hooks/powerpc.py: Add support to collect more data on + PowerNV. (LP: #1499226) Thanks to Kamalesh Babulal for the patch. + + -- Brian Murray Tue, 12 Jan 2016 17:06:29 -0800 + +apport (2.19.3-0ubuntu2) xenial; urgency=medium + + * Fix fileutils.test_find_package_desktopfile test for symlinks and other + unowned files in /usr/share/applications/. (Cherry-picked from trunk.) + + -- Martin Pitt Thu, 10 Dec 2015 10:31:19 +0100 + +apport (2.19.3-0ubuntu1) xenial; urgency=medium + + * New upstream microrelease: + - apt/dpkg: Fix source record lookup in install_packages. Thanks Brian + Murray! + - hookutils.py, attach_gsettings_schema(): Don't replace the schema + variable; fixes attaching relocatable schemas. Thanks Sébastien Bacher! + - generic hook: Limit JournalErrors to the 1.000 last lines. This avoids + long report load times when processes cause massive log spew. + (LP: #1516947) + - Add key filtering to ProblemReport.load(). + - Don't read the entire report when determining the CrashCounter. This + avoids long delays for existing large reports. + - test_python_crashes.py: Be less sensitive to the precise names of + gvfs-metadata D-Bus service files. + - Move backend_apt_dpkg -dbgsym test cases to Ubuntu 15.10. + - Tests: Move to unittest's builtin "mock" module. + + -- Martin Pitt Tue, 08 Dec 2015 09:49:00 +0100 + +apport (2.19.2-0ubuntu9) xenial; urgency=medium + + * If trimming the DpkgTerminalLog file fails, keep the whole log file in the + report. (LP: #1522849) + + -- Brian Murray Mon, 07 Dec 2015 09:19:37 -0800 + +apport (2.19.2-0ubuntu8) xenial; urgency=medium + + * No-change rebuild against fixed debhelper. + + -- Martin Pitt Wed, 25 Nov 2015 06:21:22 +0100 + +apport (2.19.2-0ubuntu7) xenial; urgency=medium + + * data/general-hooks/ubuntu.py: resolve Traceback when parsing + DpkgTerminalError and using python2. + + -- Brian Murray Tue, 24 Nov 2015 11:35:10 -0800 + +apport (2.19.2-0ubuntu6) xenial; urgency=medium + + * Add Conflicts/Replaces/Provides: core-dump-handler, to ensure mutual + uninstallability with systemd-coredump and corekeeper. + + -- Martin Pitt Fri, 13 Nov 2015 11:20:31 +0100 + +apport (2.19.2-0ubuntu5) xenial; urgency=medium + + * data/general-hooks/ubuntu.py: ensure that dpkg_log_without_error is a + string. + + -- Brian Murray Mon, 09 Nov 2015 09:12:03 -0800 + +apport (2.19.2-0ubuntu4) xenial; urgency=medium + + * data/general-hooks/ubuntu.py: For package installation failures, build a + DuplicateSignature from the dpkg terminal log as using the package, + version, and dpkg ErrorMessage ended up being too generic. + + -- Brian Murray Fri, 06 Nov 2015 09:14:29 -0800 + +apport (2.19.2-0ubuntu3) xenial; urgency=medium + + * apport: Fix comparison against SIGQUIT to work for current Python + versions. (Cherry-picked from upstream). + + -- Martin Pitt Wed, 04 Nov 2015 14:06:22 -0600 + +apport (2.19.2-0ubuntu2) xenial; urgency=medium + + * apport/ui.py: set "_MarkForUpload" field to False for cases where the + apport report is damaged, about a not installed package, or when an + error occurred processing the report. (LP: #1512902) + + -- Brian Murray Tue, 03 Nov 2015 15:44:18 -0800 + +apport (2.19.2-0ubuntu1) xenial; urgency=medium + + * New upstream release. Changes since previous snapshot: + - SECURITY FIX: When determining the path of a Python module for a program + like "python -m module_name", avoid actually importing and running the + module; this could lead to local root privilege escalation. Thanks to + Gabriel Campana for discovering this and the fix! + (CVE-2015-1341, LP: #1507480) + - test_backend_apt_dpkg.py: Reset internal apt caches between tests. + Avoids random test failures due to leaking paths from previous test + cases. + * debian/control: Adjust Vcs-Bzr: for xenial branch. + * debian/control: Drop obsolete XS-Testsuite: header. + + -- Martin Pitt Tue, 27 Oct 2015 14:33:28 +0100 + +apport (2.19.1-0ubuntu3) wily; urgency=medium + + * Disable Launchpad crash upload for final Ubuntu 15.10. + * Fix backend_apt_dpkg.test_install_packages_system for recent "Fall back to + direct Launchpad ddeb download" fix. coreutils-dbgsym should now always be + available independent of whether the local system has ddeb apt sources. + (Cherry-picked from trunk). + + -- Martin Pitt Mon, 19 Oct 2015 08:48:25 +0200 + +apport (2.19.1-0ubuntu2) wily; urgency=medium + + * apt/dpkg: Don't mark packages downloaded from Launchpad for installation + by apt. Thanks Brian Murray. (Cherry-picked from trunk.) + + -- Martin Pitt Thu, 08 Oct 2015 08:04:12 +0200 + +apport (2.19.1-0ubuntu1) wily; urgency=medium + + [ Martin Pitt ] + * New upstream release: + - Consistently intercept "report file already exists" errors in all writers + of report files (package_hook, kernel_crashdump, and similar) to avoid + unhandled exceptions on those. (LP: #1500450) + - apt/dpkg: Fall back to direct Launchpad ddeb download if we can't find it + in the apt cache. Thanks Brian Murray! (LP: #1500557) + - doc/data-format.tex: Clarify that key names are being treated as case + sensitive (unlike RFC822). + + [ Brian Murray ] + * data/iwlwifi_error_dump: fix add_package call. (LP: #1496268) + + [ Sebastien Bacher ] + * data/package-hooks/sources_ubiquity.py: Don't try decode() a str + (LP: #1501773). + + -- Martin Pitt Wed, 07 Oct 2015 10:58:13 +0200 + +apport (2.19-0ubuntu1) wily; urgency=medium + + * New upstream release: + - apport: Drop re-nicing. This might decrease the time a user has to wait + for apport to finish the core dump for a crashed/hanging foreground + process. (See LP #1278780) + - kernel_crashdump: Enforce that the log/dmesg files are not a symlink. + This prevents normal users from pre-creating a symlink to the + predictable .crash file, and thus triggering a "fill up disk" DoS attack + when the .crash report tries to include itself. Thanks to halfdog for + discovering this! (CVE-2015-1338, part of LP #1492570) + - SECURITY FIX: Fix all writers of report files (package_hook, + kernel_crashdump, and similar) to open the report file exclusively, + i. e. fail if they already exist. This prevents privilege escalation + through symlink attacks. Note that this will also prevent overwriting + previous reports with the same same. Thanks to halfdog for discovering + this! (CVE-2015-1338, LP: #1492570) + - apport: Ignore process restarts from systemd's watchdog. Their traces + are usually useless as they don't have any information about the actual + reasaon why processes hang (like VM suspends or kernel lockups with bad + hardware) (LP: #1433320) + + -- Martin Pitt Thu, 24 Sep 2015 14:41:54 +0200 + +apport (2.18.1-0ubuntu1) wily; urgency=medium + + * New upstream bug fix release. Changes since our previous snapshot: + - packaging.py: Only consider first word in /etc/os-release's NAME value. + This works around Debian's inconsistent value. (LP: #1408245) + - Unify and simplify Package: field generation in kernel_crashdump, + kernel_oops, and package_hook by using the new Report.add_package() + method. (LP: #1485787) + - sandboxutils.py, make_sandbox(): Make "Cannot find package which ships + Executable/InterpreterPath" fatal, to save some unnecessary package + unpack cycles. (LP: #1487174) + * etc/apport/crashdb.conf: Enable crash reports on Launchpad for wily. + Really late, sorry about that! + + -- Martin Pitt Thu, 10 Sep 2015 11:48:46 +0200 + +apport (2.18-0ubuntu9) wily; urgency=medium + + * Revert changes to data/package_hook to include the package version. This + just hides the problem that somewhere during whoopsie add_package_info() + is not called. (See LP #1485787) + * packaging-apt-dpkg.py, is_distro_package(): If there is no origin and + /etc/system-image/channel.ini exists, assume the package is from a + read-only system image and accept it as distro package. With this we don't + need /var/lib/apt/lists/ indexes any more just to confirm the origin. + (LP: #1489410) + * Merge fixes from trunk: + - whoopsie-upload-all: Intercept OSError too (e. g. "No space left on + device"). (LP: #1476258) + - apport-retrace: Only consider the file name of a source file, not its + path; the latter often contains parts like "../" or directories which are + specific to a build machine. This fixes most broken StacktraceSource + results. (LP: #1462491) + + -- Martin Pitt Mon, 31 Aug 2015 11:35:54 +0200 + +apport (2.18-0ubuntu8) wily; urgency=medium + + * data/package-hooks/source_ubiquity.py: resolve tracebacks parsing syslog + and adding the debug log file. + + -- Brian Murray Fri, 28 Aug 2015 10:03:59 -0700 + +apport (2.18-0ubuntu7) wily; urgency=medium + + * data/package_hook: When creating a Package problem write the version of + the package to the report. (LP: #1485787) + + -- Brian Murray Mon, 17 Aug 2015 15:40:39 -0700 + +apport (2.18-0ubuntu6) wily; urgency=medium + + * Drop apport-noui from test dependencies, as whoopsie interferes with the + test crashes while the test suite runs. (LP: #1478115) + * Restore whoopsie dependency of apport-noui. + * apport-noui.service: Add missing Type=oneshot, to fix restart limits with + crashes happening in rapid succession. + * Merge test fixes from trunk. + * data/package-hooks/source_linux.py: Fix PEP-8 error. + + -- Martin Pitt Mon, 10 Aug 2015 11:25:07 +0200 + +apport (2.18-0ubuntu5) wily; urgency=medium + + * apport-noui: Remove the dependency on whoopsie as it causes test failures. + + -- Brian Murray Fri, 24 Jul 2015 13:23:03 -0700 + +apport (2.18-0ubuntu4) wily; urgency=medium + + * whoopsie-upload-all: restore import of apport.fileutils which seems to + resolve some test failures. + + -- Brian Murray Thu, 23 Jul 2015 12:17:01 -0700 + +apport (2.18-0ubuntu3) wily; urgency=medium + + * apport-noui: Depend on watershed and whoopsie since whoopsie-upload-all + requires whoopsie to upload crashes. + * apport-noui.upstart: Utilize watershed to only launch one instance of + whoopsie-upload-all. + * apport-noui.paths: When monitoring /var/crash switch to PathExistsGlob + since PathChanged will cause whoopsie-upload-all to run more often e.g. + when .upload and .uploaded files are created. + + -- Brian Murray Mon, 20 Jul 2015 14:09:23 -0700 + +apport (2.18-0ubuntu2) wily; urgency=medium + + * Fix PEP-8 error in test/test_backend_apt_dpkg.py. + + -- Martin Pitt Fri, 17 Jul 2015 11:43:37 +0200 + +apport (2.18-0ubuntu1) wily; urgency=medium + + * New upstream release. Changes since our last merge from trunk: + - apport-gtk: Use GtkWidget::valign property instead of GtkMisc::yalign + which is deprecated in GTK 3.16. Thanks Iain Lane. + - sandboxutils, make_sandbox(): Don't exit with 0 (success) if the + ExecutablePath does not exist. (LP: #1462469) + - sandboxutils, make_sandbox(): Fix second round of package installs to go + into permanent root dir as well. + - apt/dpkg install_packages(): If a requested package version is not + available from apt in the given archive, try to download it from + Launchpad. Thanks to Brian Murray! + - kerneloops: Fix crash when determining the version of a custom kernel. + Thanks Brian Murray. (LP: #1468154) + - apt/dpkg install_packages(): Ignore -dbg packages whose descriptions + contain "transitional". (LP: #1469635) + - Keep "[origin: ...]" information in Package: and Dependencies: fields + for native-origins.d/ origins, so that it's possible to retrace them. + Thanks Brian Murray! (LP: #1470572) + - Add support for retracing with discovering and enabling foreign + Launchpad PPA origins, as specified in reports' Package:/Dependencies: + fields. Thanks Brian Murray! + - hookutils.attach_wifi(): Shorten value of CRDA if iw isn't available on + the system. Thanks Brian Murray. + - Fix wrong assertion in crashdb.test_check_duplicate() which surfaces + under Python 3.5. (LP: #1474539) + * test/test_backend_apt_dpkg.py: Disable new test assertion for + unity-services-dbgsym, which doesn't currently work in the autopkgtest + (but works fine in trunk and on the retracers). To be investigated. + + -- Martin Pitt Fri, 17 Jul 2015 11:03:21 +0200 + +apport (2.17.3-0ubuntu4) wily; urgency=medium + + * apport-gtk.ui: Use "valign" to align the icon on the crash dialog. + "yalign" is deprecated with GTK 3.16 and the consequent warning causes a + testsuite failure. Cherry-pick from upstream MP. + + -- Iain Lane Fri, 05 Jun 2015 11:52:04 +0100 + +apport (2.17.3-0ubuntu3) wily; urgency=medium + + * Merge from trunk: + - Fix backend_apt_dpkg.test_install_packages_permanent_sandbox test to + restore proxy settings at the right time. + + -- Martin Pitt Thu, 28 May 2015 16:01:34 +0200 + +apport (2.17.3-0ubuntu2) wily; urgency=medium + + * Merge from trunk: + - Fix backend_apt_dpkg.test_install_packages_permanent_sandbox test to + more carefully restore the environment and apt config. + - Enable suid_dumpable in the init.d script to also get Apport reports + about suid, unreadable, and otherwise protected binaries. These will be + "system reports" owned and readable by root only. + - init.d script: Fix tab usage inconsistencies. + + -- Martin Pitt Thu, 28 May 2015 10:05:40 +0200 + +apport (2.17.3-0ubuntu1) wily; urgency=medium + + * New upstream release: + - SECURITY UPDATE: When /proc/sys/fs/suid_dumpable is enabled, crashing a + program that is suid root or not readable for the user would create + root-owned core files in the current directory of that program. Creating + specially crafted core files in /etc/logrotate.d or similar could then + lead to arbitrary code execution with root privileges. + Now core files do not get written for these kinds of programs, in + accordance with the intention of core(5). + Thanks to Sander Bos for discovering this issue! + (CVE-2015-1324, LP: #1452239) + - SECURITY UPDATE: When writing a core dump file for a crashed packaged + program, don't close and reopen the .crash report file but just rewind + and re-read it. This prevents the user from modifying the .crash report + file while "apport" is running to inject data and creating crafted core + dump files. In conjunction with the above vulnerability of writing core + dump files to arbitrary directories this could be exploited to gain root + privileges. + Thanks to Philip Pettersson for discovering this issue! + (CVE-2015-1325, LP: #1453900) + - apportcheckresume: Fix "occured" typo, thanks Matthew Paul Thomas. + (LP: #1448636) + - signal_crashes test: Fix test_crash_setuid_* to look at whether + suid_dumpable was enabled. + - test/run: Run UI tests under dbus-launch, newer GTK versions require this + now. + + -- Martin Pitt Wed, 20 May 2015 16:58:35 +0200 + +apport (2.17.2-0ubuntu2) wily; urgency=medium + + [ Brian Murray ] + * Update Vcs information in debian/control. + * general-hooks/ubuntu.py: update checks for corrupt packages. + + [ Martin Pitt ] + * Disable KDE tests for the time being. apport-kde consistently crashes + in PyQT5 since vivid (LP #1442512), don't block package migration on this. + + -- Martin Pitt Mon, 18 May 2015 08:36:07 +0200 + +apport (2.17.2-0ubuntu1) vivid; urgency=medium + + * New upstream bug fix release: + - SECURITY UPDATE: Disable crash forwarding to containers. The previous + fix in 2.17.1 was not sufficient against all attack scenarios. By + binding to specially crafted sockes, a normal user program could forge + arbitrary entries in /proc/net/unix. We cannot currently rely on a + kernel-side solution for this; this feature will be re-enabled once it + gets re-done to be secure. (LP: #1444518) + - apport-kde: Fix crash when showing byte array values. Thanks Jonathan + Riddell. (LP: #1443659) + - Really create a better duplicate signature for recoverable problems, + using ExecutablePath. Thanks Brian Murray. (LP: #1316763) + * Disable Launchpad crash upload for final Ubuntu 15.04. + + -- Martin Pitt Thu, 16 Apr 2015 17:51:18 -0500 + +apport (2.17.1-0ubuntu2) vivid; urgency=medium + + * Fix crash in kde frontend LP: #1443659 + + -- Jonathan Riddell Wed, 15 Apr 2015 13:29:04 +0200 + +apport (2.17.1-0ubuntu1) vivid; urgency=medium + + * New upstream bug fix release: + - SECURITY UPDATE: Fix root privilege escalation through crash forwarding + to containers. + Version 2.13 introduced forwarding a crash to a container's apport. By + crafting a specific file system structure, entering it as a namespace + ("container"), and crashing something in it, a local user could access + arbitrary files on the host system with root privileges. + Thanks to Stéphane Graber for discovering and fixing this! + (CVE-2015-1318, LP: #1438758) + - apport-kde tests: Fix imports to make tests work again. + - Fix UnicodeDecodeError on parsing non-ASCII environment variables. + - apport: use the proper pid when calling apport in another PID namespace. + Thanks Brian Murray. (LP: #1300235) + + -- Martin Pitt Tue, 14 Apr 2015 09:10:17 -0500 + +apport (2.17-0ubuntu2) vivid; urgency=medium + + * Update apport-kde runtime dependencies. It requires pyqt5 not + pykde4 LP: #1439784 + + -- Harald Sitter Fri, 10 Apr 2015 10:52:34 +0200 + +apport (2.17-0ubuntu1) vivid; urgency=medium + + * New upstream release. Changes since our last snapshot: + - general-hooks/generic.py: Add systemd journal warnings and errors to the + new "JournalErrors" field. + + -- Martin Pitt Tue, 31 Mar 2015 09:25:40 +0200 + +apport (2.16.2-0ubuntu5) vivid; urgency=medium + + * KDE: Port Apport to Qt 5 LP: #1436328 + + -- Jonathan Riddell Fri, 27 Mar 2015 15:09:19 +0100 + +apport (2.16.2-0ubuntu4) vivid; urgency=medium + + * general-hooks/ubuntu.py: for reports where the ProblemType is Package + always include information about the apt and dpkg versions. + + -- Brian Murray Fri, 20 Mar 2015 13:23:45 -0700 + +apport (2.16.2-0ubuntu3) vivid; urgency=medium + + * package-hooks/source_linux.py: Don't check BootDmesg for staging drivers + anymore since it is no longer included in the crash report. (LP: #1430168) + + -- Brian Murray Wed, 11 Mar 2015 12:57:05 -0700 + +apport (2.16.2-0ubuntu2) vivid; urgency=medium + + * Merge from trunk: + - Adjust signal_crashes.test_crash_setuid_{keep,drop} for systemd. + + -- Martin Pitt Mon, 09 Mar 2015 11:32:18 +0100 + +apport (2.16.2-0ubuntu1) vivid; urgency=medium + + * New upstream bug fix release: + - ProblemReport: Set a timestamp of 0 in gzip compressed fields; they are + meaningless and cause unnecessary jitter in the output. + - launchpad backend: Fix unclosed file in upload(). + - launchpad backend: Fix wrong use of filter() with Python 3. + - launchpad backend download(): Try to convert textual values from byte + arrays into into strings. + - ui.py, collect_info(): Fix crash on bug pattern checking with broken + gzipped values. (LP: #1345653) + - hookutils, attach_drm_info(): Avoid UnicodeDecodeErrors in Python 3 when + reading binary files. Thanks Chad Miller. (LP: #1425254) + - apport-gtk: Update legacy icon names to modern GTK ones, to fix icons + under GNOME. Thanks Scott Sanbar. (LP: #1422176) + - Move backend_apt_dpkg testsuite to use Ubuntu 14.04 LTS. + - hookutils, attach_dmesg(): Only attach dmesg as CurrentDmesg, drop + BootDmesg as /var/log/dmesg is upstart specific and thus not reliably + correct any more. + - hookutils, recent_syslog(): Read system logs from the journal when + running under systemd, and fall back to /var/log/syslog if not. + - hookutils, attach_mac_events(): Read kernel violation messages from + dmesg instead of /var/log/kern.log, as that's specific to rsyslog and + its configuration. + + -- Martin Pitt Mon, 02 Mar 2015 11:37:32 +0100 + +apport (2.16.1-0ubuntu2) vivid; urgency=medium + + * Merge from trunk: + - hookutils.in_session_of_problem(): Check $XDG_SESSION_ID and + /run/systemd/sessions instead of the cgroup, as the latter does not work + under cgmanager. + + -- Martin Pitt Tue, 10 Feb 2015 12:52:00 +0100 + +apport (2.16.1-0ubuntu1) vivid; urgency=medium + + * New upstream release: + - Set gettext translation domain in setup.cfg, so that tools like + dh_translations pick it up and show correct polkit translations. + Thanks to Aron Xu! (LP: #1306857) + - Report.get_logind_session(): Check $XDG_SESSION_ID and + /run/systemd/sessions instead of the cgroup, as the latter does not work + under cgmanager. + + -- Martin Pitt Tue, 10 Feb 2015 11:39:05 +0100 + +apport (2.16-0ubuntu1) vivid; urgency=medium + + * New upstream release: + - Add a new method ProblemReport.extract_keys() which writes binary keys + (which can be very large) directly to files without loading them all + into memory first. Use that in apport-unpack. Thanks Louis Bouchard! + (LP: #1307413) + - launchpad backend: Work with Python 3, now that launchpadlib exists for + Python 3. (LP: #1153671) + - apport-bug, apport-gtk: Also check for $WAYLAND_SESSION, to use + apport-gtk instead of apport-cli under Wayland. Thanks Tim Lunn. + (LP: #1418766) + - apport-gtk: When running under Wayland, avoid Gdk/Wnck operation for + setting crash window modal to the PID of the crashed window; these only + work under X11. + - Don't install the test suite any more, to save 1 MB of installed space. + It can be run out of trunk easily enough, and distributions can install + it from tests/ if they desire. + - hookutils, attach_root_command_outputs(): Fix UnicodeDecodeError crash + for non-textual values. (LP: #1370259) + - ui.py: Only provide a UI to hooks if the crash db will accept the + report. This avoids asking questions if the report is merely sent to + whoopsie for Ubuntu stable releases. Thanks Brian Murrary. + (LP: #1084979) + - whoopsie-upload-all: Add package information to the report before + calling package hooks. Thanks Brian Murray. + - Fix check for available terminal when checking whether to display the + "Examine locally" button. + * Add general hook for detecting Wayland sessions and tagging them with + "wayland-session". Thanks Timm Lunn! (LP: #1418262) + * debian/tests/upstream-system: Copy tests from source tree, as + /usr/share/apport/testsuite/ does not exist any more. + + -- Martin Pitt Fri, 06 Feb 2015 10:11:30 +0100 + +apport (2.15.1-0ubuntu4) vivid; urgency=medium + + * data/whoopsie-upload-all: need to add package information to the report + before we can add package specific information to it. + + -- Brian Murray Mon, 26 Jan 2015 10:06:06 -0800 + +apport (2.15.1-0ubuntu3) vivid; urgency=medium + + * etc/apport/crashdb.conf: Enable crash reports on Launchpad for vivid. + + -- Martin Pitt Mon, 26 Jan 2015 17:57:03 +0100 + +apport (2.15.1-0ubuntu2) vivid; urgency=medium + + * Add systemd units for apport-noui. + * Merge from trunk: + - hookutils, attach_root_command_outputs(): Fix UnicodeDecodeError crash + for non-textual values. (LP: #1370259) + + -- Martin Pitt Thu, 08 Jan 2015 17:33:12 +0100 + +apport (2.15.1-0ubuntu1) vivid; urgency=medium + + * New upstream release. Changes since last snapshot: + - apt/dpkg _search_contents(): Check HTTP last-modified header to avoid + re-downloading Contents.gz every day unless it actually changed. Thanks + Brian Murray! + - apport-gtk: Drop properties which are deprecated in GTK 3.14. + * debian/tests/control: Wrap dependencies. + * debian/tests/control: Add gnome-icon-theme; fixes running tests with GTK + 3.14. + + -- Martin Pitt Fri, 19 Dec 2014 07:45:30 +0100 + +apport (2.15-0ubuntu3) vivid; urgency=medium + + * Merge further test robustification and translation updates from trunk. + + -- Martin Pitt Tue, 16 Dec 2014 11:01:20 +0100 + +apport (2.15-0ubuntu2) vivid; urgency=medium + + * Merge from trunk: + - Robustify report.test_get_timestamp test. + - Robustify signal_crashes.test_limit_size test. + + -- Martin Pitt Thu, 04 Dec 2014 09:19:29 +0100 + +apport (2.15-0ubuntu1) vivid; urgency=medium + + * New upstream release. Changes since our snapshot: + - recoverable_problem: Handle the parent process going away while we're + attempting to read from proc. + - apport-retrace: Stop considering a package download error as transient; it + can too easily lead to unnoticed eternal retry loops. + - whoopsie-upload-all: Refactor to behave more reliably in case of overlapping + crash processing. Thanks Steve Langasek and Brian Murray. (LP: #1354318) + - whoopsie-upload-all: Remove crash reports that have a core dump which is + broken and cannot be processed by gdb. Thanks Brian Murray. (LP: #1376374) + - When core size exceeds the limit (3/4 of available memory) and thus the core + dump is skipped, log this to /var/log/apport.log. (LP: #1387835) + - apport-gtk: Fix jump-to-top on first click of the details treeview. Thanks + Marius Gedminas. (LP: #1387328) + - apport-retrace: Fix location of cached Contents.gz when using --sandbox-dir. + (LP: #1394798) + - Fix backend_apt_dpkg.test_install_packages_permanent_sandbox test case with + proxy env variables with latest apt. + * Update Vcs-Bzr: for vivid branch. + * debian/tests: Drop obsolete workarounds, use allow-stderr. + * Bump Standards-Version to 3.9.6 (no changes necessary). + + -- Martin Pitt Tue, 02 Dec 2014 14:51:59 +0100 + +apport (2.14.7-0ubuntu10) vivid; urgency=medium + + * data/whoopsie-upload-all: confirm that the crash file exists before trying + to remove it. (LP: #1384358) + + -- Brian Murray Mon, 03 Nov 2014 17:01:55 -0800 + +apport (2.14.7-0ubuntu9) vivid; urgency=medium + + * data/general_hooks/clickinfo.py: Created a hook to determine package + and version information for executables that are from click packages. + + -- Brian Murray Fri, 31 Oct 2014 14:41:14 -0700 + +apport (2.14.7-0ubuntu8) utopic; urgency=medium + + * etc/init.d/apport: Stop setting $PATH in the init.d script. It breaks + assumptions from /lib/lsb/init-functions.d/ which might call other tools + which are not in /bin; also, we generally shouldn't meddle with $PATH in + individual scripts. (LP: #1372665) + + -- Martin Pitt Mon, 20 Oct 2014 14:51:41 -0400 + +apport (2.14.7-0ubuntu7) utopic; urgency=medium + + * Disable Launchpad crash upload for final Ubuntu 14.10. + + -- Martin Pitt Wed, 15 Oct 2014 15:37:02 +0200 + +apport (2.14.7-0ubuntu6) utopic; urgency=medium + + * data/recoverable_problem: Fix a Traceback with how the ValueError was + matched. (LP: #1345569) + + -- Brian Murray Mon, 13 Oct 2014 10:02:21 -0700 + +apport (2.14.7-0ubuntu5) utopic; urgency=medium + + [ Evan Dandrea] + * data/recoverable_problem: Handle the parent process going away while + we're attempting to read from proc. (LP: #1345569) + + -- Brian Murray Tue, 07 Oct 2014 15:26:30 -0700 + +apport (2.14.7-0ubuntu4) utopic; urgency=medium + + * data/whoopsie-upload-all: remove crash reports that have a core dump + which is broken and cannot be processed by gdb. (LP: #1376374) + + -- Brian Murray Tue, 07 Oct 2014 14:48:28 -0700 + +apport (2.14.7-0ubuntu3) utopic; urgency=medium + + [ Steve Langasek ] + * Refactor apport-noui/whoopsie-upload-all to behave more reliably in + case of overlapping crash processing (LP: #1354318): + - debian/apport-noui.upstart: refactor to make this an 'instance' job + for each incoming .crash file, and drop the racy handling of non-root + .crash files (as well as the unnecessary 'env MATCH' line). + - data/whoopsie-upload-all: refactor report processing to ensure that + whoopsie-upload-all can be called multiple times in parallel without + causing any .crash file to be processed more than once. + - data/whoopsie-upload-all: handle setting ownership of files in + process_report() instead of relying on this script being called by a + particular user. + - data/whoopsie-upload-all: don't spin in wait_uploaded() watching for + .uploaded files if the corresponding .upload file has been removed out + from under us. + - data/whoopsie-upload-all: by default, return immediately instead of + waiting to see if whoopsie processes all of the crashes. + + [ Brian Murray ] + * data/whoopsie-upload-all: indicate that all reports have been uploaded + even those that were marked for upload earlier. + + -- Brian Murray Thu, 02 Oct 2014 08:33:49 -0700 + +apport (2.14.7-0ubuntu2) utopic; urgency=medium + + [ Brian Murray ] + * data/general-hooks/ubuntu.py: check to see if system-image-cli is + available rather than if /etc/system-image/client.ini exists. + + [ Martin Pitt ] + * ui.py: Robustify check if apport-retrace is installed. This brings back + the "Examine locally" UI option. (LP: #1358734) (Cherry-picked from + trunk). + + -- Martin Pitt Thu, 04 Sep 2014 12:30:27 +0200 + +apport (2.14.7-0ubuntu1) utopic; urgency=medium + + * New upstream release: + - Fix interpretation of core dump ulimits: they are in bytes, not KiB. + (LP: #1346497) + - apport-retrace: Don't require specifying an operation; default to + updating the given .crash file. (LP: #1361242) + - Write report even on UnreportableReasons, so that whoopsie can still + upload them. (LP: #1360417) + - apt/dpkg install_packages(): Write a "packages.txt" into sandbox root + directory to keep track of installed packages and their versions. + Prerequisite for LP #1352591. + - apt/dpkg install_packages(): Avoid re-downloading/installing packages + which are already installed into a permanent sandbox. Prerequisite for + LP #1352591. + - sandboxutils.py, make_sandbox(): Drop check for already existing files + when dynamically resolving libraries and ExecutablePaths; with that, + these packages would never get updated in a permanent sandbox. The new + version tracking from above now takes care of that. (LP: #1352591) + - Fix report.test_add_proc_info test to stop assuming that pid 1 is named + "init", as one can specify a different one on the kernel command line. + - report.py, add_gdb_info(): Check for truncated core dumps, and set + UnreportableReason and raise an IOError on them. Handle this in + apport-retrace and whoopsie-upload-all to fail properly instead of + silently producing broken Stacktraces. (LP: #1354571) + + -- Martin Pitt Fri, 29 Aug 2014 12:38:54 +0200 + +apport (2.14.6-0ubuntu2) utopic; urgency=medium + + * Cherry-pick from trunk: Adjust backend_apt_dpkg.test_get_file_package() + test: newer util-linux versions do not provide /etc/blkid.tab any more. + + -- Martin Pitt Tue, 19 Aug 2014 10:38:44 +0200 + +apport (2.14.6-0ubuntu1) utopic; urgency=medium + + * New upstream bug fix release: + - general-hooks/generic.py: Fix hook crash if there are non-distro + libraries and no user interface. + - collect_info(): Don't assume that reports have a ProblemType. Fixes + crashes with apport-collect. (LP: #1325729) + - apport-retrace: Declare -s/-g/-o as mutually exclusive, to get proper + error messages instead of silent misbehaviour. (LP: #1352450) + - apport-gtk: Drop usage of deprecated GTK stock items. (LP: #1348116) + + -- Martin Pitt Mon, 18 Aug 2014 07:57:16 +0200 + +apport (2.14.5-0ubuntu4) utopic; urgency=medium + + [ Steve Langasek ] + * Fix invalid shebang lines for apport-noui maintainer scripts which I + somehow overlooked. + + [ Martin Pitt ] + * Add data/general-hooks/powerpc.py: Collect some PowerPC[64] information. + Thanks to Thierry FAUCK! (LP: #1336462) + + -- Martin Pitt Fri, 08 Aug 2014 15:13:16 +0200 + +apport (2.14.5-0ubuntu3) utopic; urgency=medium + + * apport-noui: make the package installation automatically enable + autosubmission, which doesn't currently work on the phone without it; + and update the package description accordingly. LP: #1351137. + + -- Steve Langasek Fri, 01 Aug 2014 15:06:49 -0700 + +apport (2.14.5-0ubuntu2) utopic; urgency=medium + + * data/general-hooks/ubuntu.py: Check for /etc/system-image/client.ini + instead of /var/log/system-image/client.log since the latter is only + readable by root. + + -- Brian Murray Tue, 29 Jul 2014 13:20:54 -0700 + +apport (2.14.5-0ubuntu1) utopic; urgency=medium + + * New upstream bug fix release. Changes since last snapshot: + - apt/dpkg get_file_package(): If checking for uninstalled packages, don't + use package information from the host system, but always look it up in + the correct indexes. Otherwise this returns wrong results when files + move to a different package between releases. Thanks Brian Murray! + (LP: #1336062) + - apt/dpkg install_packages(): Disable fetching apt translation indexes, + to save some bandwidth. + - whoopsie-upload-all: Ignore crash reports with incomplete core dumps + instead of crashing on them. Thanks Brian Murray. (LP: #1329520) + - etc/default/apport: Fix comment to use "service" instead of calling the + init.d script directly. + - whoopsie-upload-all: Collect hooks information to gather ApportVersion, + NonfreeKernelModules, and SystemImageInfo. Do this before collecting + package data to minimize hook run time. (LP: #1349579) + - Adjust report.test_get_logind_session test to work with systemd >= 205. + - Fix report.test_check_interpreted_twistd test to skip instead of fail if + twisted is not installed. + + * Drop automatix.py general hook. Automatix is long gone. + * etc/apport/blacklist.d/apport: Drop long obsolete npviewer/npplayer + entries. + * Drop unnecessary python-gi build dependency. + * Drop python-twisted-core build dependency. It's just used for one test, + and will still run in autopkgtest. (Avoids current twisted + uninstallability in main) + + -- Martin Pitt Tue, 29 Jul 2014 12:26:23 +0200 + +apport (2.14.4-0ubuntu3) utopic; urgency=medium + + * In apport-kde recommend gdb-minimal before gdb + LP: #1347565 "apport recommends gdb" + + -- Jonathan Riddell Wed, 23 Jul 2014 12:35:16 +0200 + +apport (2.14.4-0ubuntu2) utopic; urgency=medium + + * Merge from trunk: + - apport-bug: Stop checking the autoreport flag and calling + whoopsie-upload-all; these two are different tasks, and that breaks bug + reporting. (LP: #1339663) + + -- Martin Pitt Thu, 10 Jul 2014 17:18:33 +0200 + +apport (2.14.4-0ubuntu1) utopic; urgency=medium + + * New upstream bug fix release: + - Adjust code to match latest pep8 checker. + - Report.crash_signature_addresses(): Drop kernel architecture from + StacktraceAddressSignature field. It isn't useful there (at most the ELF + architecture, but we don't really need that either). This makes it + easier to regenerate broken signatures from existing reports on + different architectures. (LP: #1336565) + * Fix PEP-8 errors in Ubuntu hooks. + + -- Martin Pitt Thu, 03 Jul 2014 06:50:06 +0200 + +apport (2.14.3-0ubuntu2) utopic; urgency=medium + + * Turn on Launchpad crash submission for the devel series. + + -- Martin Pitt Wed, 18 Jun 2014 15:40:26 +0200 + +apport (2.14.3-0ubuntu1) utopic; urgency=medium + + * New upstream bug fix release: + - Add kernel package version to the various kernel-related hooks. Thanks + Brian Murray. (LP: #1316845) + - Use package name in duplicate signature for recoverable problems. Thanks + Brian Murray. (LP: #1316763) + - Have whoopsie-upload-all upload recoverable problems. Thanks Brian + Murray. (LP: #1319099) + + -- Martin Pitt Fri, 30 May 2014 15:35:53 +0200 + +apport (2.14.2-0ubuntu4) utopic; urgency=medium + + * data/package-hooks/source_linux.py: create a duplicate signature for + suspend resume failures. (LP: #1316841) + + -- Brian Murray Fri, 16 May 2014 09:46:51 -0700 + +apport (2.14.2-0ubuntu3) utopic; urgency=medium + + * debian/apport-noui.upstart: remove early exit (LP: #1235436) + * debian/apport-noui.dirs: create /var/lib/apport (LP: #1235436) + + -- Brian Murray Wed, 14 May 2014 12:26:39 -0700 + +apport (2.14.2-0ubuntu2) utopic; urgency=medium + + * Merge "backend_apt_dpkg.test_install_packages_versioned: Fix namespacing + of ver" fix from trunk, to better debug the autopkgtest failure on i386. + + -- Martin Pitt Fri, 02 May 2014 17:30:39 +0200 + +apport (2.14.2-0ubuntu1) utopic; urgency=medium + + * New upstream release: + - Move error handling for invalid .crash files into collect_info(), so + that it also applies when using the "Show Details..." button in the UI. + Otherwise the UI just hangs eternally at this point when encountering + broken core dumps. (LP: #1282349) + - apt/dpkg install_packages(): Try to install the requested package + version instead of always picking the most recent one. This should + improve retracing results for older crash reports. Thanks to Brian + Murray for inspiring this. + - sandboxutils.py, make_sandbox(): When determining packages to install + from ProcMaps, look up and use the package versions from the reporter, + to improve retracing results. Thanks Brian Murray for the initial patch! + - iwlwifi_error_dump: Make reports private, and subscribe + canonical-kernel-team. Thanks Seth Forshee. (LP: #1313818) + - signal_crashes test: Time out after 5 seconds if the test process does + not terminate on the specified signal, to avoid eternal hangs. + - signal_crashes test: Ensure that we don't inherit an ignored SIGQUIT + from the caller. + * Switch Vcs-* to utopic branch. + * Add build-essential test dependency, some tests call gcc. + * Install iwl_wifi_error_dump and corresponding udev rules. (Second part of + LP: #1313818) + + -- Martin Pitt Wed, 30 Apr 2014 14:07:17 +0200 + +apport (2.14.1-0ubuntu3) trusty; urgency=medium + + * Cherry-pick from trunk: Delay the import of the glob and re modules in the + python apport hook, and only import them when needed. Speeds up + interpreter startup time by 50%. (LP: #1307684) + + -- Matthias Klose Tue, 15 Apr 2014 08:42:00 +0200 + +apport (2.14.1-0ubuntu2) trusty; urgency=medium + + * etc/apport/crashdb.conf: Disable Launchpad crash/kernel reports for + the final release. Only report to http://errors.ubuntu.com from now on. + + -- Brian Murray Thu, 10 Apr 2014 14:26:24 -0700 + +apport (2.14.1-0ubuntu1) trusty; urgency=medium + + * New upstream bug fix release: + - Fix FileNotFoundError from temporary launchpadlib cache dir cleanup. + (LP: #1300474) + - ui.py, open_url(): Skip any Python cleanup/atexit handlers in the forked + xdg-open child, to avoid calling them twice. (Side issue of LP #1300474 + and #1282713) + - apport-kde: Work around crash in sip by skipping the destructors of SIP + objects. Thanks Rohan Garg! (LP: #1282713) + + -- Martin Pitt Fri, 04 Apr 2014 15:34:06 +0100 + +apport (2.14-0ubuntu1) trusty; urgency=medium + + * New upstream release: + - Add KernelCrash reports when iwlwifi encounters a firmware error (via + the "error_dump" uevent and the new iwlwifi_error_dump helper). Thanks + Seth Forshee! + - launchpad: Really use a temporary launchpadlib cache dir by default. + This avoids piling up gigabytes of useless cached data over time, which + also tends to break every now and then. + - Fix crash in logind session detection. Thanks Dimitri Ledkov! + (LP: #1296026) + + -- Martin Pitt Mon, 31 Mar 2014 11:47:19 +0200 + +apport (2.13.3-0ubuntu1) trusty; urgency=medium + + [ Martin Pitt ] + * New upstream release: + - etc/cron.daily/apport: Cleanup .drkonqi files after 7 days. Thanks Harald + Sitter. + - ui.py: Try to grab session D-BUS address from user's session when being + called through pkexec. (LP: #1287460) + + [ Brian Murray ] + * data/package-hooks/source_linux.py: ensure dupe_sig1 and dupe_sig2 are + None if they are not found + + -- Martin Pitt Fri, 07 Mar 2014 16:34:45 +0100 + +apport (2.13.2-0ubuntu5) trusty; urgency=medium + + * data/package-hooks/source_linux.py: remove line feed from + DuplicateSignature as it causes issues on the error tracker + + -- Brian Murray Tue, 18 Feb 2014 13:36:50 -0800 + +apport (2.13.2-0ubuntu4) trusty; urgency=medium + + * data/kernel_oops: include the package version in addition to the name + + -- Brian Murray Fri, 14 Feb 2014 14:09:39 -0800 + +apport (2.13.2-0ubuntu3) trusty; urgency=medium + + * package-hooks/source_linux.py: create a DuplicateSignature for kernel + oops reports thereby allowing them to be bucketed and consolidated in + the Ubuntu error tracker + + -- Brian Murray Thu, 13 Feb 2014 14:33:07 -0800 + +apport (2.13.2-0ubuntu2) trusty; urgency=medium + + * Merge from trunk: + - Fix backend_apt_dpkg.test_get_file_package_uninstalled test that got + broken in the previous release. + + -- Martin Pitt Mon, 27 Jan 2014 15:21:06 +0100 + +apport (2.13.2-0ubuntu1) trusty; urgency=medium + + * New upstream bug fix release: + - Fix crash if systemd cgroup is unreadable in /sys, such as in + containers. (LP: #1270783) + - apt/dpkg: Also consider Contents.gz from updates/security/proposed + pockets, so that e. g. apport-retrace works for crash reports with files + that are new in those. Thanks to Brian Murray for the initial patch. + (LP: #1271258) + - Only drop internal/private keys (starting with '_') from uploading to + the crash DB and from the UI report views, but not already when updating + the report. (LP: #1272505) + - data/apport: Fix stdout/stderr initialization of the error log, don't + close the original fd after dup2'ing as it is usually already fd 1. This + makes Apport work with Python 3.4. (LP: #1272355) + - Adjust report tests to work with Python 3.4 (LP: #1272355) + + -- Martin Pitt Mon, 27 Jan 2014 11:33:51 +0100 + +apport (2.13.1-0ubuntu2) trusty; urgency=medium + + * debian/apport.upstart: Use running-in-container instead of checking init's + environment. + * Re-enable Launchpad crash reports for Trusty. (LP: #1271887) + + -- Martin Pitt Fri, 24 Jan 2014 17:34:56 +0100 + +apport (2.13.1-0ubuntu1) trusty; urgency=medium + + * New upstream release: + - Fix report.test_get_timestamp test for running in other time zones. + - Fix erroneous "gdb-multiarch not installed" warnings in ui tests. + - Fix ui.test_run_crash_older_session test for running as root. + - Fix ui.test_run_crash_older_session for different file system file + orders. + + -- Martin Pitt Fri, 10 Jan 2014 10:58:54 +0100 + +apport (2.13-0ubuntu1) trusty; urgency=medium + + * New upstream release. Changes since our previous merge: + - Do not report keys starting with '_' to the crash database. This can be + used for keeping private keys in .crash files between crash and report + time, or to store data between hooks etc., without cluttering reports. + - UI: In "run all pending crashes" mode, skip reports that happened during + logout in a desktop (specifically, logind) session; they are + uninteresting and confusing to see at the next login. (LP: #1033932) + They can still be reported manually with running the .crash file + directly, but this sufficiently reduces the need to explicitly flag + whether the report concerns a logout crash. (LP: #1067646) + - Add support for PID namespaces (Linux containers): Crashes originating + from a container on a system running a >= 3.12 kernel will be + automatically redirected to apport inside the container, or ignored if + apport is not installed in the container. Thanks to Stéphane Graber! + - Print a warning when trying to retrace a report from a foreign + architecture and gdb-multiarch is not installed. (LP: #1239395) + - etc/init.d/apport: Don't change core_pattern when running in a + container, as this influences the host and other containers, too. + * apport/ui.py: Rename "MarkForUpload" whoopsie hack field to + "_MarkForUpload" and remove delta from launchpad.py. Fields starting with + '_' are now considered private. + * debian/apport.upstart: Add "%P" macro to core_pattern, to enable Linux + container handling with upstart. + * debian/apport.upstart: Don't change core_pattern when running in a + container, as this influences the host and other containers, too. + (LP: #1267728) + + -- Martin Pitt Fri, 10 Jan 2014 09:07:07 +0100 + +apport (2.12.7-0ubuntu6) trusty; urgency=medium + + * Merge from trunk: + - setup.py: Make updating of hashbangs work when building without Java, + and also apply it on bin/. + * Bump Standards-Version to 3.9.5, no changes necessary. + + -- Martin Pitt Tue, 07 Jan 2014 18:41:12 +0100 + +apport (2.12.7-0ubuntu5) trusty; urgency=low + + * Modify the location of apport/autoreport from /etc to /var/lib to be more + compatible with phablet images. Remove instance from apport-noui upstart + job. (LP: #1235436) + + -- Brian Murray Mon, 06 Jan 2014 13:00:41 -0800 + +apport (2.12.7-0ubuntu4) trusty; urgency=medium + + * In python3 (unlike python2) file object does not have "splitlines()" + method, instead one iterate over the lines in the file directly. (LP: + #1265735) + + -- Dimitri John Ledkov Fri, 03 Jan 2014 08:36:55 +0000 + +apport (2.12.7-0ubuntu3) trusty; urgency=medium + + * Merge from trunk: + - test_signal_crashes: Clean up unexpected reports after every test, to + avoid breaking all subsequent tests. + - test_signal_crashes: Stop checking that gdb prints nothing on stderr, as + latest gdb 7.6.50 now almost always prints some about missing source + files. + * During package build, only run subset of tests that work on buildds, and + make any failure fail the build. The full test suite is run as + autopkgtest. + + -- Martin Pitt Thu, 19 Dec 2013 08:29:02 +0100 + +apport (2.12.7-0ubuntu2) trusty; urgency=low + + * data/package-hooks/source_ubiquity.py: only warn people about passwords in + the debug log file if they are running in debug mode (LP: #1257159) + * data/general-hooks/ubuntu.py: gather more information for dpkg already + installed and configured package install failures + + -- Brian Murray Mon, 09 Dec 2013 14:20:12 -0800 + +apport (2.12.7-0ubuntu1) trusty; urgency=low + + [ Martin Pitt ] + * New upstream release: + - Properly fall back to lsb_release if /etc/os-release is invalid. + - report.py, add_proc_info(): Add "CurrentDesktop" field with the value of + $XDG_CURRENT_DESKTOP, if present. (LP: #1247904) + - fileutils.py, get_all_system_reports(): Filter out "guest..." users, + they might have a system UID. (LP: #1250679) + - apt/dpkg: Don't call dpkg-divert with full path, it moved in Ubuntu + 14.04. (LP: #1252305) + * launchpad.py: Ignore "MarkForUpload" field, it's just for internal + communication with whoopsie. + + [ Andy Whitcroft ] + * package-hooks/source_linux.py: pull forward fix to generify linux-meta + to linux mapping. (LP: #1229611) + * package-hooks/source_linux.py: pull forward kernel tagging for + linux-lts- family kernels. (LP: #1229611) + + -- Martin Pitt Tue, 19 Nov 2013 09:11:53 +0100 + +apport (2.12.6-0ubuntu1) trusty; urgency=low + + * New upstream security/bug fix release: + - SECURITY FIX: For setuid programs which drop their privileges after + startup, make the report and core dumps owned by root, to avoid possible + data disclosure. Also, change core dump files to permissions "0600". + Thanks to Martin Carpenter for discovering this! + (CVE-2013-1067, LP: #1242435) + - sandboxutils.needed_runtime_packages(): Create cache directory for + Contents.gz if missing. (LP: #933199) + - apt/dpkg: Recognize options in apt sources.list. (LP: #1238620) + * Move Vcs-Bzr to trusty branch. + + -- Martin Pitt Fri, 25 Oct 2013 06:49:19 +0200 + +apport (2.12.5-0ubuntu2) saucy; urgency=low + + * etc/apport/crashdb.conf: Disable Launchpad crash/kernel reports for the + final release. Only report to http://errors.ubuntu.com from now on. + + -- Martin Pitt Fri, 11 Oct 2013 12:11:45 +0200 + +apport (2.12.5-0ubuntu1) saucy; urgency=low + + * New upstream bug fix release: + - Report.add_os_info(): Do not overwrite already existing data. + (LP: #1226776) + - kernel_oops hook: Collect uname at the time of invoking the hook, + instead of at data collection time. (LP: #1226776) + - Replace fixed size icons with PNGs, which are more efficient and avoid + rendering artifacts. (LP: #1231763) + + -- Martin Pitt Fri, 27 Sep 2013 05:56:30 +0200 + +apport (2.12.4-0ubuntu1) saucy; urgency=low + + * New upstream release: + - Update icons to new design from Vishnoo Charan Reddy, many thanks! + (LP: #1079639) + + -- Martin Pitt Thu, 19 Sep 2013 13:27:03 -0500 + +apport (2.12.3-0ubuntu1) saucy; urgency=low + + * New upstream bug fix release: + - ProblemReport.write_mime(): Adjust MIMEText handling to latest Python + 3.3 upstream changes which now don't tolerate passing bytes any more. + (LP: #1227381) + - apport-gtk: Don't use obsolete add_with_viewport() method any more. + - Fix ui_present_report_details() "modal_for" keyword for all UI + implementations, so that --hanging works for -cli and -kde, too. + (LP: #1213790) + + -- Martin Pitt Thu, 19 Sep 2013 10:36:06 -0500 + +apport (2.12.2-0ubuntu1) saucy; urgency=low + + * New upstream bug fix release. Changes since previous snapshot: + - crash-digger: Write pid into lock file. Thanks Steve Langasek. + - apport-gtk: When loading a Bug report from a file, properly set up for + bug reporting mode. (LP: #1226140) + - Move "program is not installed any more" check from report loading into + data collection, so that crash reports can be moved and reported on + machines without that program installed. (LP: #1226030) + * data/general-hooks/ubuntu.py: Add output of "system-image-info -i" to + reports as field "SystemImageInfo", to better identify phablet builds. + (LP: #1225113) + * Add gdb-minimal dependency to apport-noui, as for crashes we always need a + StacktraceAddressSignature at least. (part of LP #1226030) + + -- Martin Pitt Tue, 17 Sep 2013 16:25:55 -0500 + +apport (2.12.1-0ubuntu4) saucy; urgency=low + + * whoopsie-upload-all: Add a -t/--timeout option. In Jenkins we don't want + to block on upload for 30 mins, but it's still a reasonable timeout on + phones. + + -- Martin Pitt Thu, 12 Sep 2013 11:50:22 -0400 + +apport (2.12.1-0ubuntu3) saucy; urgency=low + + * data/general-hooks/ubuntu-gnome.py: Add tag when using the gnome3-next + PPA. + * data/general-hooks/cloud_archive.py: Fix IndexError if Package field does + not exist. + * Merge from trunk: + - fileutils.py, get_{new,all}_reports(): Don't consider reports which are + readable, but not writable. (LP: #1098844) + - test_ui_kde.py: Cleanly skip the test if PyQt/PyKDE are not installed, + instead of failing. + + -- Martin Pitt Fri, 30 Aug 2013 12:42:01 +0200 + +apport (2.12.1-0ubuntu2) saucy; urgency=low + + * Don't provide arguments to whoopsie-upload-all. It doesn't take any. + * Do not attempt to install the now dead apport-noui frontend. + + -- Evan Dandrea Mon, 19 Aug 2013 15:25:05 +0100 + +apport (2.12.1-0ubuntu1) saucy; urgency=low + + [ Martin Pitt ] + * New upstream release. Changes since our previous snapshot: + - Drop apport-noui in favour of whoopsie-upload-all. We don't want to + process hooks when run noninteractively, since they may ask questions or + determine a report is not due to a bug in Ubuntu. whoopsie-upload-all + skips these hooks. + - apport/report.py: Gracefully handle being unable to get the source package + for a binary package, as when the latter does not exist in the cache. + (LP: #1097773) + * data/general-hooks/ubuntu-gnome.py: Switch to Tim Lunn's duplicate DB for + the Ubuntu GNOME PPA. + + [ Evan Dandrea ] + * Call whoopsie-upload-all from the apport-noui upstart job instead of + the now-dead apport-noui frontend. + + -- Evan Dandrea Mon, 19 Aug 2013 14:42:26 +0100 + +apport (2.12-0ubuntu3) saucy; urgency=low + + * Add an upstart job and package to handle automatic error reporting. + + -- Evan Dandrea Tue, 06 Aug 2013 11:17:48 +0100 + +apport (2.12-0ubuntu2) saucy; urgency=low + + * Merge from trunk: + - sandboxutils.py, make_sandbox(): Install packages from Package: and + Dependencies: fields also if we have a ProcMaps: field and there are any + third-party packages. This fixes retracing crashes that use PPAs (as they + don't have Contents.gz). + - Robustify "progress bar visible" GTK and KDE UI checks for the faster + collection due to dropping lsb_release. + + -- Martin Pitt Fri, 02 Aug 2013 16:03:43 +0200 + +apport (2.12-0ubuntu1) saucy; urgency=low + + * New upstream release: + - recoverable_problem: Can take the PID as an argument. + - Add data/whoopsie-upload-all: Process all pending crashes and mark them + for whoopsie upload, but do not upload them to any other crash database. + Wait until whoopsie is done uploading. + - Eliminate multiple calls to lsb_release by caching the result. On + systems which provide /etc/os-release, use that instead of lsb_release. + (LP: #1164742) + - launchpad.py: Show the Python major version in the error message about + missing launchpadlib. + - ui.py: Check if options for updating and reporting a new bug get used + together, and give a proper error message in this case. (LP: #1071905) + - apport: Fix "Exectuable" typo, leading to reports not being synced on + upstart crashes. Thanks James Hunt. (LP: #1203744) + - Rename apport-gtk-mime.desktop to apport-gtk.desktop and drop the + old apport-gtk.desktop that wasn't even being installed. With that, the + window will be shown as "Report a problem..." instead of "Apport-gtk" in + GNOME shell and other DEs. Thanks Jeremy Bicha. (LP: #1207496) + - report.py, add_gdb_info(): Fix crash if gdb cannot load the symbol map. + (LP: #1171484) + - apport-retrace: Fix crash when using --sandbox without --cache. + (LP: #1197034) + - Fix error message when PID is inaccessible. (LP: #1204718) + - doc/data-format.tex: Drop unused "OS" and "OSRelease" fields, replace + with "DistroRelease" which is actually being used. (LP: #1018387) + * debian/apport-gtk.install: Adjust for desktop file rename. + * debian/apport.install: Install whoopsie-upload-all. + * launchpad.py: Show package name in 'launchpadlib not installed' error + message, and give a more direct error message when trying to use this + through Python 3. (LP: #1071905) + + -- Martin Pitt Fri, 02 Aug 2013 11:30:12 +0200 + +apport (2.11-0ubuntu1) saucy; urgency=low + + * New upstream release: + - data/apport-noui: A noninteractive frontend for automatic error + reporting. apport-bug will use this if the /etc/apport/autoreport flag + file exists. + - hookutils.py, attach_upstart_logs(): Also attach + ~/.cache/upstart/application-.log for any *.desktop file + shipped by a package. + * debian/apport.install: Ship the new apport-noui frontend. + + -- Martin Pitt Wed, 17 Jul 2013 09:48:42 +0200 + +apport (2.10.2-0ubuntu4) saucy; urgency=low + + [ Brian Murray ] + * Avoid a crash when handling dpkg terminal log files with unicode data in + them + + [ Evan Dandrea ] + * Fix the order of suid_dumpable and core_pattern. Thanks Seth Arnold + (LP: #1194541). + + -- Evan Dandrea Mon, 08 Jul 2013 15:50:49 +0100 + +apport (2.10.2-0ubuntu3) saucy; urgency=low + + * Enable suid_dumpable (core dumps of setuid binaries). This has + always been safe for us, as we set a core pipe handler, but the + kernel now protects against one not being set: + http://kernel.ubuntu.com/git?p=ubuntu/ubuntu- + raring.git;a=blob;f=Documentation/sysctl/fs.txt;h=88152f214f48cb69c6 + 43d4bf2ff2ac9a61ad2eb0;hb=HEAD + + -- Evan Dandrea Tue, 25 Jun 2013 15:37:01 +0100 + +apport (2.10.2-0ubuntu2) saucy; urgency=low + + [ Brian Murray ] + * data/general-hooks/ubuntu.py: + - Resolve crash in duplicate signature calculation when the package is not + installed (LP: #1184121) + - Remove unusable check for previous package install failures + - Fix indentation of package-conflict check + + [ Martin Pitt ] + * Raise python-apport's "Suggests: python launchpadlib" to Depends:, as the + only reason why to install this package is for apport-collect these days. + (LP: #1192330) + * Merge from trunk: + - hookutils.py, attach_conffiles(): Fix check for inaccessible or modified + conffiles. (LP: #1192899) + - Updated translations from LP. + * etc/apport/crashdb.conf: Enable crash reports on Launchpad for saucy. + + -- Martin Pitt Fri, 21 Jun 2013 07:16:00 +0200 + +apport (2.10.2-0ubuntu1) saucy; urgency=low + + * New upstream bug fix release: + - Resolve symlinks in file references in Python crash signatures. + (LP: #1179979) + - Fix endless loop of EOFErrors with broken core dumps. (LP: #1168849) + - report.py, add_gdb_info(): Fix crash if gdb did not determine an + assertion message. (LP: #1171484) + - apt/dpkg: Fix get_file_package()'s "release" field to actually mean + DistroRelease:, not a distro code name. This now requires a previous + call to install_packages() with a configdir, which needs to have a file + //codename with the release's code name in it. + - sandboxutils.py: Call get_file_package() with the report's release, so + that we actually get files from the target release, not the host + release. + - test_hookutils.py: Don't assume that /etc/motd exists. + * Move to dh compat level 9. + + -- Martin Pitt Wed, 22 May 2013 12:39:21 +0200 + +apport (2.10.1-0ubuntu1) saucy; urgency=low + + * New upstream bug fix release: + - Fix ui.test_run_crash_anonymity_escaping test when running as root. + - launchpad.py: Fix crash when trying to adjust a distro-only bug task if + the bug also already has a distropackage task. + - apt/dpkg: When there is no -dbg package, install all -dbg packages of + the corresponding source package, and only then fall back to -dbgsym. + (LP: #1003234) + * data/general-hooks/ubuntu.py: Fix PEP8 error, to make test suite run + again. + + -- Martin Pitt Tue, 14 May 2013 16:43:09 +0200 + +apport (2.10-0ubuntu3) saucy; urgency=low + + * data/general-hooks/cloud_archive.py: deal with the case where a bug is + being reported about a package that is not installed (LP: #1173240) + + -- Brian Murray Mon, 06 May 2013 08:29:51 -0700 + +apport (2.10-0ubuntu2) saucy; urgency=low + + * data/general-hooks/ubuntu.py: For package installation failures, build a + DuplicateSignature from the package, version, and dpkg ErrorMessage, + instead of using the whole dpkg terminal log. + + -- Martin Pitt Thu, 02 May 2013 15:21:23 -0700 + +apport (2.10-0ubuntu1) saucy; urgency=low + + [ Martin Pitt ] + * New upstream release. Changes since our previous snapshot: + - Support retracing foreign powerpc reports, thanks Steve Langasek. + - apport/report.py: Generate a crash signature for suspend/resume failures. + - hookutils.py: Add attach_upstart_logs(), thanks Steve Langasek. + - hookutils.py, in_session_of_problem(): Port from ConsoleKit to logind. + - apport/report.py: Handle the case where the user has been removed from + the system, but one of its still-running binaries crashes (LP: #1163453). + - Fix anonymization of user/GECOS fields with regexp control characters + like '+'. (LP: #985049) + - Run tests under LC_CTYPE=C and unset LANG as well, to discover + assumptions about UTF-8 locales. Fix the two failing tests. + - Fix UnicodeDecodeError when apport encounters non-ASCII environment + variables. (LP: #1172638) + * debian/control: Update Vcs-* for saucy branch. + * data/general-hooks/cloud_archive.py: Fix PEP-8 error. + + [ Steve Langasek ] + * data/general-hooks/ubuntu.py: Call attach_upstart_logs(), to attach the + logs for any upstart user jobs shipped by the binary package. + + -- Martin Pitt Tue, 30 Apr 2013 14:49:42 -0700 + +apport (2.9.2-0ubuntu8) raring; urgency=low + + * data/package-hooks/source_ubiquity.py: use an untranslated string to + determine if the grub install was successful (LP: #1168126) + + -- Brian Murray Thu, 11 Apr 2013 12:51:43 -0700 + +apport (2.9.2-0ubuntu7) raring; urgency=low + + * data/general-hooks/cloud_archive.py: Send reports for packages from + the Ubuntu Cloud Archive to the cloud-archive project on Launchpad. + + -- James Page Thu, 11 Apr 2013 16:07:39 +0100 + +apport (2.9.2-0ubuntu6) raring; urgency=low + + * etc/apport/crashdb.conf: Disable Launchpad crash/kernel reports for the + raring release. Only report to http://errors.ubuntu.com from now on. + + -- Martin Pitt Thu, 11 Apr 2013 12:42:27 +0200 + +apport (2.9.2-0ubuntu5) raring; urgency=low + + * data/package-hooks/source_ubiquity.py: Fix crash on non-UTF-8 data in log + files. + * Merge from trunk: + - data/gcc_ice_hook: Fix crash with source files that have non-UTF8 data. + (LP: #1045283) + + -- Martin Pitt Wed, 27 Mar 2013 09:01:58 +0100 + +apport (2.9.2-0ubuntu4) raring; urgency=low + + * data/general-hooks/ubuntu-gnome.py: Add "gnome3-ppa" tag if any dependency + is from the gnome3 PPA. + * Merge from trunk: + - hookutils.attach_conffiles(): Fix IOError crash on inaccessible + conffiles; mark them as '[inaccessible: ]' instead. + (LP: #1154536) + - hookutils.in_session_of_problem(): Fix crash when the current locale is + invalid. (LP: #1154896) + + -- Martin Pitt Mon, 25 Mar 2013 15:34:02 +0100 + +apport (2.9.2-0ubuntu3) raring; urgency=low + + [ Martin Pitt ] + * Add data/general-hooks/ubuntu-gnome.py: Send reports for packages from the + gnome3 PPAs to the ubuntu-gnome Launchpad project. (LP: #1158119) + + [ Philip Muškovac ] + * Add the seed name as bug tag in the ubiquity hook so it's possible to + filter the bugs by the image that was used. (LP: #1154302) + + -- Martin Pitt Mon, 25 Mar 2013 11:17:49 +0100 + +apport (2.9.2-0ubuntu2) raring; urgency=low + + * Include ubiquity.log generated by upstart for the ubiquity.conf + upstart job. + + -- Dmitrijs Ledkovs Wed, 13 Mar 2013 18:52:21 +0000 + +apport (2.9.2-0ubuntu1) raring; urgency=low + + * New upstream release: + - report.py, add_package_info(): Add "[origin: unknown]" tag to + Package/Dependencies fields for non-distro package whose origin cannot + be determined. (LP: #1148116) + - Adjust kernel_crashdump to the format kdump-tools produces. Thanks Louis + Bouchard. + - Write core dumps on SIGQUIT if ulimit allows. Thanks Graeme Hewson. + (LP: #1153662) + * debian/apport.upstart: Also check for kdump-tools-style kernel crash + reports for calling kernel_crashdump. Thanks Louis Bouchard. + + -- Martin Pitt Tue, 19 Mar 2013 11:48:27 +0100 + +apport (2.9.1-0ubuntu1) raring; urgency=low + + * New upstream release: + - launchpad.py: Add support for filing bugs as private. Document this in + doc/crashdb-conf.txt. (LP: #1144647) + - Fix crash in error() and warning() if there is no sys.stderr. + (LP: #1012445) + - Fix Turkish translation to add missing keyboard accelerator. + (LP: #648750) + - fileutils.py, find_package_desktopfile(): Restrict to autostart and + application .desktop files. (LP: #1147528) + - apt/dpkg get_modified_files(): Fix crash when encountering non-ASCII + file names in an ASCII locale. (LP: #1044014) + * Bump Standards-Version to 3.9.4 (no changes necessary). + + -- Martin Pitt Thu, 07 Mar 2013 16:04:35 +0100 + +apport (2.9-0ubuntu2) raring; urgency=low + + * Merge from trunk: + - test_signal_crashes.py: Fix test_crash_apport() when being run under + LD_PRELOAD. + + -- Martin Pitt Fri, 01 Mar 2013 13:35:21 +0100 + +apport (2.9-0ubuntu1) raring; urgency=low + + [ Martin Pitt ] + * New upstream release. Changes since previous trunk merge: + - fileutils.py, shared_libraries(): Return a "name → path" dict instead of + just a set of names. Thanks Kyle Nitzsche. + - sandboxutils.py: Support unpackaged executables, i. e. reports which do + not have "Package" and "Dependencies" fields. For those, get required + libraries from "ProcMaps". Thanks Kyle Nitzsche. + - apport/report.py: report if LD_PRELOAD and LD_LIBRARY_PATH are set. + Thanks James Hunt. + - apport-valgrind: Cleanly exit on keyboard interrupts. Thanks Kyle + Nitzsche. + - debian.py: Fix "string payload expected" crash when building the report. + Thanks Dmitry Shachnev. (Debian #698010) + - Move shared_libraries() and links_with_shared_library() from hookutils + into fileutils, so that we can use it from apport-valgrind. Thanks to + Kyle Nitzsche for the initial patch. + - fileutils.shared_libraries(): Filter out virtual "linux-vdso" from + result. Thanks Kyle Nitzsche. + - apport-valgrind: Fix path to debug symbols in the sandbox. + - ui.py, get_desktop_entry(): Fix for Python 2. + + [ Brian Murray ] + * data/general-hooks/ubuntu.py: remove adding of running-unity tag to bug + reports as the majority of users are now using unity so this is the more + common case. + * data/package-hooks/source_ubiquity.py: set a default value for cd_error + + -- Martin Pitt Fri, 01 Mar 2013 09:17:34 +0100 + +apport (2.8-0ubuntu4) raring; urgency=low + + * ui.py: Check $PKEXEC_UID in addition to $SUDO_UID for opening a browser. + (Backported from trunk). + + -- Martin Pitt Fri, 01 Feb 2013 11:26:39 +0100 + +apport (2.8-0ubuntu3) raring; urgency=low + + * Backport polkit action for running apport-gtk through pkexec to access + system crash reports from upstream r2578 + + -- Brian Murray Wed, 30 Jan 2013 08:13:01 -0800 + +apport (2.8-0ubuntu2) raring; urgency=low + + [ Martin Pitt ] + * debian/control: Add alternative libc-dbg dependencies. + + [ Brian Murray ] + * data/package-hooks/source_linux.py: modify check for whether or not the + kernel is an upstream one (LP: #1100198) + + -- Brian Murray Thu, 17 Jan 2013 09:04:19 -0800 + +apport (2.8-0ubuntu1) raring; urgency=low + + * New upstream release: + - Factor out sandbox management functions from apport-retrace into + apport/sandboxutils.py, so that other programs can re-use the API + easily. Thanks to Kyle Nitzsche for the initial work on this. + - Generate a crash signature for kernel OOPSes. + - Add "apport-valgrind" tool to produce valgrind reports in a temporary + sandbox with debug symbols (similar to apport-retrace). Thanks Alex + Chiang and Kyle Nitzsche! + - Fix StacktraceAddressSignature generation on ARM. (LP: #1089778) + - debian.py: Fix TypeError crash in payload generation. Thanks Ritesh Raj + Sarraf. + - apport_python_hook.py: Update "ExecutableTimestamp" field when mangling + "ExecutablePath". (LP: #1077253) + * Add new apport-valgrind binary package. + * Re-enable Launchpad crash reports for raring. + + -- Martin Pitt Tue, 08 Jan 2013 08:39:35 +0100 + +apport (2.7-0ubuntu2) raring; urgency=low + + * Cherry-pick from trunk: + - Fix StacktraceAddressSignature generation on ARM. (LP: #1089778) + + -- Martin Pitt Thu, 13 Dec 2012 08:56:47 +0100 + +apport (2.7-0ubuntu1) raring; urgency=low + + * New upstream release: + - packaging.py, get_file_package(): Add optional "release" and "arch" + arguments for getting a file's package for a foreign release or + architecture. Implement this for apt/dpkg backend. + - packaging.py, install_packages(): Add optional "architecture" argument + for creating a sandbox for a foreign architecture. Implement this for + apt/dpkg backend. + - When a report's architecture does not match the system architecture, try + to use gdb-multiarch (if available, as packaged on Debian/Ubuntu), and + set architecture and gnutarget accordingly in gdb. This supports x86, + x86_64, and ARM for now, so that reports from all these architectures + can be retraced on an x86_84 machine. (LP: #1044437) + - launchpad.py: Add "architecture" option to process reports for a foreign + architecture. + - Add exceptions from package hooks to new HookError_ report + field, to make them more visible. Until now they were only written to + stderr. (LP: #1086309) + - apport-cli: Fix showing of prompt. Thanks Dmitry Shachnev! + - fileutils.py, mark_report_upload(): Do not try to remove the .uploaded + file, as this is not owned by the user. + - backends/packaging-apt-dpkg.py, install_packages(): Set mirror to the + one in the sandbox config. + - apportcheckresume: Fix crash if state file does not exist. + * debian/control: Add "gdb-multiarch" suggests to apport-retrace, and update + package description for justification. + + -- Martin Pitt Mon, 10 Dec 2012 14:07:04 +0100 + +apport (2.6.3-0ubuntu4) raring; urgency=low + + * Merge from trunk: Consistently use ignore file without $HOME. Fixes + running as root, and autopkgtests. + + -- Martin Pitt Wed, 05 Dec 2012 23:28:09 +0000 + +apport (2.6.3-0ubuntu3) raring; urgency=low + + * Fix OSError crash in mark_report_upload(); regression from + 2.6.3-0ubuntu2. + + -- Martin Pitt Wed, 05 Dec 2012 10:55:55 +0000 + +apport (2.6.3-0ubuntu2) raring; urgency=low + + * debian/control: Add libglib2.0-dev and libnih-dev build dependencies, for + the tests that run during build time. + * debian/tests/control: Add missing test dependencies: libnih-dev for + test_add_gdb_info_abort_libnih. + * Merge from trunk: + - Fix test_find_package_desktopfile test to not consider packages with + only one "NoDisplay=true" .desktop file for the "has one desktop file" + test. + - report.py, mark_ignore(): Use home directory of actual effective user, + not of $HOME. Fixes ignore file when using through sudo. + + -- Martin Pitt Fri, 30 Nov 2012 21:51:33 +0100 + +apport (2.6.3-0ubuntu1) raring; urgency=low + + * New upstream release. Changes since our previous snapshot: + - debian.py: Only reject reports with useless stack traces if the report + actually has a stack trace at all. + - debian.py: Fix UTF-8 string handling. Thanks Ritesh Raj Sarraf. + - debian.py: Fix crash on broken "Package" fields, as generated by current + Debian/Ubuntu dkms package. + - data/apport: Call fsync when writing upstart crash reports. + - report.py, add_gdb_info(): Handle libnih's assertion messages. + (LP: #997359) + - apport-gtk, apport-kde: Don't provide an option to restart a crashed + application when the crash occurred in a thread (LP: #1033902). + - apport-retrace: Disallow option -C without option -S. Thanks Kyle + Nitzsche. + - fileutils.py, mark_report_upload(): Refresh the .upload stamps if a + previous version of the report was already uploaded, but another + instance of the problem happened since then. Thanks Brian Murray. (LP: + #1084296) + - Ignore implausibly low addresses when computing + StacktraceAddressSignature. These are usually artifacts from gdb when + not having debug symbols, and having too many of them prevents proper + client-side duplicate detection and proper bucketing in daisy. + (LP: #1084996) + - fileutils.py: Ignore .desktop files with NoDisplay=true. (LP: #1048524) + * debian/tests/control: Run tests as root, just like before switching our + autopkgtests to run as user "ubuntu" by default. This enables a couple of + extra tests, and avoids some confusion because the distro and the user + name are identical. + * data/package-hooks/source_linux-nexus7.py: Fix PEP-8 error. + + -- Martin Pitt Fri, 30 Nov 2012 18:00:01 +0100 + +apport (2.6.2-0ubuntu5) raring; urgency=low + + * data/general-hooks/ubuntu.py: Deal with dpkg_log file being a string + instead of bytes (LP: #1080915) + + -- Brian Murray Mon, 19 Nov 2012 17:03:54 -0800 + +apport (2.6.2-0ubuntu4) raring; urgency=low + + * data/package-hooks/source_linux.py: Do not abort with "not an Ubuntu + kernel" if the report has a CrashDB set, i. e. reports go to a different + project. + * Add data/package-hooks/source_linux-nexus7.py: Package hook for our nexus7 + package which currently lives in a PPA: (LP: #1076082) + - Report bugs against the "ubuntu-nexus7" project. + - Collect information from the "linux" source package hook. + - Add "mobile" and "nexus7" tags. + + -- Martin Pitt Mon, 19 Nov 2012 09:24:12 +0100 + +apport (2.6.2-0ubuntu3) raring; urgency=low + + * debian/tests/control: Add missing libglib2.0-0-dbg test dependency for the + report.test_add_gdb_info_abort_glib() check. + + -- Martin Pitt Fri, 09 Nov 2012 10:49:30 +0100 + +apport (2.6.2-0ubuntu2) raring; urgency=low + + * debian/tests/control: Add libglib2.0-dev dependency for the new "glib + assertion message" test case. + * Merge from trunk: + - test_signal_crashes.py: Fix incompatibility with Python 3.3. + - test_signal_crashes.py: Allow XDG_RUNTIME_DIR environment variable, as + it only shows whether or not it is set. (Test regression from 2.6) + + -- Martin Pitt Wed, 07 Nov 2012 10:24:28 +0100 + +apport (2.6.2-0ubuntu1) raring; urgency=low + + * New upstream release: + - problem_report.py: Fix UnicodeDecodeError crash under Python 2 when the + report has an unicode field with an unprintable ASCII character < 20. + - debian.py: Fix calling of parent accepts() method and return value. + Thanks Ritesh Raj Sarraf. + - bin/apport-retrace: Fix crash when not using --sandbox mode. + - report.py, add_proc_info(): Throw correct exception if the executable + path does not exist, to provide a more appropriate error message. + (LP: #1065129) + - report.py, add_gdb_info(): Check __glib_assert_msg for assertion + messages, too. + - REThread.py: Fix for Python 3.3. + * debian/control: Update Vcs-Bzr: for raring branch. + + -- Martin Pitt Tue, 06 Nov 2012 16:18:56 +0100 + +apport (2.6.1-0ubuntu6) quantal-proposed; urgency=low + + * Do not refer to the current release in the InstallationDate field + (LP: #1070400). We have the installed release version in the + InstallationMedia field. + + -- Evan Dandrea Wed, 24 Oct 2012 14:31:10 +0100 + +apport (2.6.1-0ubuntu5) quantal-proposed; urgency=low + + * Include the date that Ubuntu was installed with each report + (LP: #1070400). + + -- Evan Dandrea Wed, 24 Oct 2012 11:29:18 +0100 + +apport (2.6.1-0ubuntu4) quantal-proposed; urgency=low + + * apport/ui.py: create a MarkForUpload field and set that to false for + binaries that changed since the crash happened thereby preventing uploads + to the crash database (LP: #1039220) + + -- Brian Murray Tue, 16 Oct 2012 13:31:24 -0700 + +apport (2.6.1-0ubuntu3) quantal; urgency=low + + * etc/apport/crashdb.conf: Disable Launchpad crash/kernel reports for the + final release. Only report to http://errors.ubuntu.com from now on. + + -- Martin Pitt Tue, 09 Oct 2012 17:19:32 +0200 + +apport (2.6.1-0ubuntu2) quantal; urgency=low + + * apport-kde; do not run mainloop as well as dialogues, prevents + crash on reporting a bug + + -- Jonathan Riddell Tue, 09 Oct 2012 13:14:38 +0100 + +apport (2.6.1-0ubuntu1) quantal; urgency=low + + * New upstream release: + - setup.py: Build java module with "-target 1.5" option, so that you can run + it with OpenJDK 6 even if you build with OpenJDK 7. + - report.py, add_proc_info(): Show if $XDG_RUNTIME_DIR is set. + - Add apport/crashdb_impl/debian.py: Initial crash database implementation for + the Debian BTS. Add configuration for it to etc/apport/crashdb.conf. Thanks + Ritesh Raj Sarraf! + Note that in the Ubuntu packaging branch crashdb.conf is not changed, as + we do not need the Debian BTS and this would otherwise be Feature Freeze + matter. + - test_python_crashes.py: Robustify "$PYTHONPATH in ProcEnviron" check. + - Updated translations from Launchpad. + * data/package-hooks/source_linux.py: Stop collecting ACPI data, not + needed/desired for most bug reports according to Colin King. + * debian/tests/control: Add at-spi2-core dependency, otherwise the GTK test + will fail to connect to org.a11y.Bus. + + -- Martin Pitt Mon, 01 Oct 2012 12:27:00 +0200 + +apport (2.5.3-0ubuntu1) quantal; urgency=low + + * New upstream release. Changes since our previous snapshot: + - report.py, search_bug_patterns(): Fix bug patterns containing non-ASCII + characters. + - apport_python_hook.py: Capture $PYTHONPATH and $PYTHONHOME environment + variables for Python crashes. + - Translation updates. + + -- Martin Pitt Fri, 28 Sep 2012 12:59:11 +0200 + +apport (2.5.2-0ubuntu4) quantal; urgency=low + + * Merge from trunk: + - hookutils.py, attach_root_command_outputs(): Ignore IOError crash about + nonexisting files, which can happen if the user dismisses authorization. + (LP: #1051222) + - launchpad.py: Fix tag filtering for Python 3. (LP: #1052754) + + -- Martin Pitt Thu, 20 Sep 2012 08:07:01 +0200 + +apport (2.5.2-0ubuntu3) quantal; urgency=low + + * data/general-hooks/ubuntu.py: Fix PEP-8 errors. + * Merge from trunk: + - apport/ui.py: Update expected exception after r2486. + + -- Martin Pitt Wed, 19 Sep 2012 10:41:09 +0200 + +apport (2.5.2-0ubuntu2) quantal; urgency=low + + * data/general-hooks/ubuntu.py: Add "package-from-proposed" tag if the + installed package version is available from -proposed, but not from + -security and -updates. (LP: #1050853) + * Merge fixes from trunk: + - data/apportcheckresume: Open report file in binary mode. (LP: #1040353) + - packaging-apt-dpkg.py: When throwing ValueErrors, show the non-existing + package name. This makes it easier to debug such crashes. + - launchpad.py: Replace characters from tags which are not allowed by + Launchpad with '.' (LP: #1029479) + + -- Martin Pitt Tue, 18 Sep 2012 14:51:08 +0200 + +apport (2.5.2-0ubuntu1) quantal; urgency=low + + * New upstream release: + - Fix crash on broken .desktop files. (LP: #1039889) + - apport-gtk: For console program crashes, say "stopped" instead of + "closed". Add a subtitle label with a hint about hanging programs. + Thanks Matt Price and Matthew Paul Thomas! + - report.py: Fix crash on determination of Python module path when + examining a crash of "python -m ...". + - apport-kde: Fix crash with undefined QString under Python 3. Thanks + Jonathan Riddell! (LP: #1028984) + - launchpad.py: Add missing "Pre-release Freeze" status. Thanks Brian + Murray! + - report.py, _check_bug_pattern(): Fix bug pattern matching against binary + values. Thanks Brian Murray for the original patch. (LP: #1016380) + * debian/control: Move x-terminal-emulator dependency from apport-retrace to + -gtk and -kde. It's those which actually spawn an X terminal for + apport-retrace to run in, and this lessens the dependencies for + apport-retrace on server type systems. + * Add debian/apport.maintscript: Clean up obsolete precise conffile + /etc/apport/native-origins.d/lts-q-backports on upgrades. (LP: #1049058) + * data/general-hooks/ubuntu.py: Fix PEP-8 errors. + + -- Martin Pitt Mon, 17 Sep 2012 14:15:41 +0200 + +apport (2.5.1-0ubuntu7) quantal-proposed; urgency=low + + * bin/apport-bug: Explicitly set the PATH to that of ENV_SUPATH in + /etc/login.defs. We need do this so that confined applications using + ubuntu-browsers.d/ubuntu-integration cannot abuse the environment to + escape AppArmor confinement via this script (LP: #1045986). This can be + removed once AppArmor supports environment filtering (LP: 1045985) + + -- Jamie Strandboge Tue, 04 Sep 2012 21:23:16 -0500 + +apport (2.5.1-0ubuntu6) quantal; urgency=low + + * data/general/ubuntu.py: handle the case where a log file is compressed + when reviewing package installation failures (LP: #917903) + + -- Brian Murray Tue, 04 Sep 2012 15:35:50 -0700 + +apport (2.5.1-0ubuntu5) quantal; urgency=low + + * Use Python string rather than QString, LP: #1028984 + + -- Jonathan Riddell Tue, 04 Sep 2012 16:13:14 +0100 + +apport (2.5.1-0ubuntu4) quantal; urgency=low + + * do not stack trace when ec2 metadata is available (LP: #1018552) + + -- Scott Moser Thu, 30 Aug 2012 17:15:02 -0400 + +apport (2.5.1-0ubuntu3) quantal; urgency=low + + * data/general/ubuntu.py: when creating a duplicate signature search the + terminal log for more messages indicating the start of a failure thereby + creating a duplicate signature in more cases + + -- Brian Murray Tue, 28 Aug 2012 09:56:30 -0700 + +apport (2.5.1-0ubuntu2) quantal; urgency=low + + * Merge from trunk: + - test/run: Ignore root_info_wrapper with pyflakes. + - packaging-apt-dpkg.py: Add recommended packages to "Dependencies:" + field. (LP: #1014428) + - test_hookutils.py, test_in_session_of_problem(): Use year 2038 for a + future date instead of 2211, as current Python 3.2 now crashes with an + OverflowError on 32 bit machines with later years. + + -- Martin Pitt Fri, 24 Aug 2012 07:50:15 +0200 + +apport (2.5.1-0ubuntu1) quantal; urgency=low + + * New upstream release: + - test_recoverable_problem.py: Fix test for calling test runner with + absolute path. + - packaging-apt-dpkg.py: Fix crash on writing virtual_mapping.db when + running with --sandbox-dir and -S system or giving no --cache. + - REThread.py: Fix re-raising of exceptions in Python 3. Thanks Martin + Packman! (LP: #1024836) + - apport-retrace: Keep compressed CoreDump from .crash files instead of + uncompressing them into memory. This dramatically reduces memory usage. + (LP: #981155) + - Add an apport.memdbg() function which prints out current memory usage if + APPORT_MEMDEBUG is set. Annotate apport-retrace with it. + - hookutils.py: Allow specifying a list of profile names when using + attach_mac_events(). Thanks Marc Deslauriers. + - hookutils.py, attach_root_command_outputs() and root_command_output(): + Drop usage of sudo, kdesudo, and gksu, and replace with pkexec. For + attach_root_command_outputs(), use a wrapper and proper .policy file + which explains the action and works under every environment; thus + attach_root_command_outputs() is preferred over root_command_output() + now, as it provides a better user experience. + - Package hooks which want to send the report to a different crash + database than "default" can now also give the database specification + itself in the "CrashDB" field, not just the DB name. With this, packages + do not need to ship a separate /etc/apport/crashdb.conf.d/ file. Please + see doc/package-hooks.txt for details. (LP: #551330) + - report.py, add_hooks_info(): If reporting against a package/program in + /opt, also search for package hooks in the corresponding /opt directory. + This allows such hooks to define a custom crash database and thus report + bugs against their own project instead of against the distribution. + (LP: #1020503) + * debian/rules: Call dh_install with --list-missing, and ignore .pyc and + .egg-info files. + * debian/apport.install: Install new polkit .policy and root_info_wrapper + files, and add policykit-1 Recommends. + * debian/apport.install: Ship is-enabled script. + * debian/apport-kde.install: Ship userpass.ui file. + * Drop debian/apport-retrace.manpages and debian/apport.manpages and install + the man pages from *.install instead. This works better with + --list-missing. + * debian/apport.install: Install 000record-status pm-utils script, to + unbreak suspend failure detection. + + -- Martin Pitt Wed, 22 Aug 2012 11:58:45 +0200 + +apport (2.4-0ubuntu9) quantal; urgency=low + + * apport/ui.py: revert the change to when the .upload file is created as the + fix was incomplete and requires more investigation + + -- Brian Murray Tue, 21 Aug 2012 10:23:35 -0700 + +apport (2.4-0ubuntu8) quantal; urgency=low + + * hookutils.py: Allow specifying a list of profile names when using + attach_mac_events() + + -- Marc Deslauriers Wed, 15 Aug 2012 22:47:33 -0400 + +apport (2.4-0ubuntu7) quantal; urgency=low + + * apport/ui.py: only create the .upload file after collect_info is complete + that way whoopsie will upload crash files with all the information it + needs (LP: #1020994) + + -- Brian Murray Wed, 15 Aug 2012 16:07:34 -0700 + +apport (2.4-0ubuntu6) quantal; urgency=low + + * debian/control: + - Drop python3-pykde4 from Build-Depends. The dep8 tests will pull + it in as needed. The non-fatal build tests will continue to fail the + KDE test anyway because it requires X. This way, we don't require + python3-pykde4 to be in main. + + -- Michael Terry Wed, 25 Jul 2012 13:20:42 -0400 + +apport (2.4-0ubuntu5) quantal; urgency=low + + * Merge from trunk: + - test_recoverable_problem.py: Fix test for calling test runner with + absolute path. + + -- Martin Pitt Mon, 23 Jul 2012 07:06:40 +0200 + +apport (2.4-0ubuntu4) quantal; urgency=low + + * data/general/ubuntu.py: check to see if a package installation duplicate + signature has been encountered previously and if so prevent bug reporting + (LP: #1007637) + * data/general/ubuntu.py: properly decode DpkgTerminalLog lines + + -- Brian Murray Fri, 20 Jul 2012 11:39:06 -0700 + +apport (2.4-0ubuntu3) quantal; urgency=low + + * data/general/ubuntu.py: modify regualr expressions for determining which + package installation failures to gather /etc/default/grub for + (LP: #1006633) + + -- Brian Murray Wed, 18 Jul 2012 15:48:49 -0700 + +apport (2.4-0ubuntu2) quantal; urgency=low + + * debian/apport.install: Ship the new recoverable_problem script. + + -- Martin Pitt Wed, 18 Jul 2012 16:33:56 +0200 + +apport (2.4-0ubuntu1) quantal; urgency=low + + [ Brian Murray ] + * data/general/ubuntu.py: in trim_log deal with the fact that + DpkgTerminalLog is a bytes object and convert it to a string object + + [ Martin Pitt ] + * New upstream release. Changes since our previous snapshot: + - Add new "RecoverableProblem" report type for problems which the + application can handle, but still wishes to notify the user and send a + problem report about. As an example, the application may wish to notify + the user because handling the error resulted in degraded functionality. + The user interface may fail to load items, or the action just performed + may not return any data. Applications call + /usr/share/apport/recoverable_problem with a string of arbitrary + NUL-separated key/value pairs that are added to the report. Thanks Evan + Dandrea! + - launchpad.py: Fix setting of 'Medium' importance on duplicate checking. + - apport-retrace: Fix StacktraceSource generation for relative --cache + paths. + - crashdb.py, check_duplicate(): Do not try to mark a bug as duplicate of + itself. This can happen when re-processing a previously retraced bug. + - apport-retrace: Fix UnicodeDecodeError when encountering a non-ASCII + source code file and running under a non-UTF-8 locale. + * debian/control: Add libc6-dbg build dependency, to ensure that the + report.test_add_gdb_info_abort test case can succeed (otherwise gdb cannot + decipher the __abort_msg structure). + + -- Martin Pitt Wed, 18 Jul 2012 12:31:50 +0200 + +apport (2.3-0ubuntu4) quantal; urgency=low + + * debian/control: Add gir1.2-wnck-3.0 dependency for apport-gtk, needed by + the new --hanging feature. + * Merge from trunk: + - test_python_crashes.py: Fix race condition in timeout test. + + -- Martin Pitt Tue, 10 Jul 2012 18:35:15 +0200 + +apport (2.3-0ubuntu3) quantal; urgency=low + + * Merge from trunk: + - apport_python_hook.py: For org.freedesktop.DBus.Error.ServiceUnknown + exceptions, add a 'DbusErrorAnalysis' field to the report which points + out whether any .service file provides the service it tried to talk to, + and whether the processes for those are running. This helps to determine + the root cause for such errors (missing dependencies, broken .service + files, talking to the wrong bus, etc.) (LP: #1020572) + - hookutils.py, attach_alsa(): Use alsa-info.sh when available. Thanks + David Henningson. + - ui tests, test_wait_for_pid(): Fix eternal hang when running as root. + - testsuite: Fix ResourceWarnings when running with Python 3. + * debian/control, debian/tests/control: Add gvfs-daemons as build/test + dependency, as test_python_crashes uses it as an example for handling + python-dbus exceptions. + + -- Martin Pitt Tue, 10 Jul 2012 14:58:45 +0200 + +apport (2.3-0ubuntu2) quantal; urgency=low + + * Fix PEP-8 violations in Ubuntu specific hooks, picked up by latest pep8 + checker. + + -- Martin Pitt Mon, 09 Jul 2012 11:30:29 +0200 + +apport (2.3-0ubuntu1) quantal; urgency=low + + * New upstream release: + - launchpad.py: Rework test suite to not use Launchpad's +storeblob + facility at all any more. It almost never works on staging and is + horribly slow. Fake the bug creation from a blob by manually creating + the comment and attachments ourselves, and just assume that storeblob + works on production. Also change the structure to allow running every + test individually. + - crash-digger: Add --crash-db option to specify a non-default crash + database name. (LP: #1003506) + - apport-gtk: Add --hanging option to specify the process ID of a hanging + application. If the user chooses to report this error, apport will + terminate the pid with SIGABRT, otherwise it will send SIGKILL. The + normal core pipe handler will be used to process the resulting report + file, with a .hanging file in /var/crash to separate these from regular + crashes. + - apport: Also treat a binary as modified if the /proc/pid/exe symlink + does not point to an existing file any more. (LP: #984944) + - Fix PEP-8 violations picked up by latest pep8 checker. + - ui.py: Do not ignore certain exceptions during upload which are not + likely to be a network error. + - launchpad.py: Recongize Launchpad projects for bug query and marking + operations. (LP: #1003506) + - packaging-apt-dpkg.py: Fix get_source_tree() to work with apt sandboxes. + - apport-retrace: Turn StacktraceSource generation back on, now that it + works with the current sandboxing. + - launchpad.py: Ensure that upload chunk size does not underrun. + (LP: #1013334) + - apport_python_hook: Fix UnicodeEncodeError crash with Python 2 for + exceptions with non-ASCII characters. (LP: #972436) + - test_ui_kde.py: Fix occasional test failure in test_1_crash_details if + the application ends before the "is progress bar visible" check is done. + + -- Martin Pitt Mon, 09 Jul 2012 08:14:30 +0200 + +apport (2.2.5-0ubuntu2) quantal; urgency=low + + * data/general/ubuntu.py: fix an issue with a regular expression for + finding a package install failure due to a corrupt package + + -- Brian Murray Mon, 02 Jul 2012 13:24:00 -0700 + +apport (2.2.5-0ubuntu1) quantal; urgency=low + + * New upstream bug fix release: + - launchpad.py: Fix str vs. bytes crash for already known bugs, take 2. + (LP: #1015788) + - apport/ui.py, get_desktop_entry(): Disable interpolation, to correctly + read desktop files with % signs. (LP: #1014341) + - apport/ui.py: Fix rare crash if a report is already being updated in the + background when the UI tries to update a previous version. (LP: #949196) + - GTK and KDE UI tests: Avoid eternal hangs due to "this is not a distro + package" error messages. + + -- Martin Pitt Thu, 21 Jun 2012 16:15:20 +0200 + +apport (2.2.4-0ubuntu1) quantal; urgency=low + + * debian/tests/control: Simplify Depends: line by using "@" and dropping + packages which are already dependencies of apport's packages. + * debian/tests/control: Drop undefined "no-build-needed" feature. + * New upstream bug fix release. Changes since our previous trunk snapshot: + - apport-cli: Unbreak "keep" option. (LP: #1007826) + - launchpad.py: Fix str vs. bytes crash for already known bugs. + (LP: #1015788) + + -- Martin Pitt Thu, 21 Jun 2012 09:13:56 +0200 + +apport (2.2.3-0ubuntu6) quantal; urgency=low + + * Merge from trunk: + - test/run: Wait for a previous xvfb server to finish before trying to + start one. This fixes a race condition in the KDE UI tests which often + failed to start up xvfb. + + -- Martin Pitt Wed, 20 Jun 2012 07:59:33 +0200 + +apport (2.2.3-0ubuntu5) quantal; urgency=low + + [ Brian Murray ] + * data/general-hooks/ubuntu.py: do not report 'dpkg-deb --control returned + error exit status 2' package install failures + + [ Martin Pitt ] + * debian/tests/upstream-system: Show number of failed tests on stdout, not + stderr. + * debian/tests/control: Add python3-mock and xvfb dependencies. + * Merge from trunk: + - test_crash_digger.py: Do not write crash reports of crash-digger into + system /var/crash, use a temporary directory. + * debian/control: Add XS-Testsuite header, as per current DEP-8. + + -- Martin Pitt Tue, 19 Jun 2012 08:51:18 +0200 + +apport (2.2.3-0ubuntu4) quantal; urgency=low + + * debian/tests/upstream-system: Clean up old crash reports. + * debian/tests/upstream-system: Show number of failed tests. + * Merge from trunk: + - test_signal_crashes.py: Show crash reports in /var/crash/. + + -- Martin Pitt Mon, 18 Jun 2012 09:30:10 +0200 + +apport (2.2.3-0ubuntu3) quantal; urgency=low + + * Merge from trunk: + - test_apport_unpack.py: Fix test_unpack_python() test when running the + system-installed tests. + - data/java_uncaught_exception: Fix for Python 3. + * debian/tests/control: Add apport-retrace dependency, as the tests cover + it. + + -- Martin Pitt Fri, 15 Jun 2012 12:57:19 +0200 + +apport (2.2.3-0ubuntu2) quantal; urgency=low + + * debian/rules: Disable the xvfb tests during package build for now, as they + currently cause the buildds to hang indefinitely. They are still run in + the jenkins autopkgtests. + + -- Martin Pitt Fri, 15 Jun 2012 10:17:17 +0200 + +apport (2.2.3-0ubuntu1) quantal; urgency=low + + [ Martin Pitt ] + * New upstream bug fix release: + - test/run: Do not run pep8 and pyflakes when running against the sytem + installed Apport. + - test_backend_apt_dpkg.py: For the "are we online" check, verify that we can + download from http://ddebs.ubuntu.com/, not just whether we have a default + route. The latter is not sufficient for e. g. buildd environments which are + online, but are restricted by proxies or firewalls. + - test_report.py: Call "sync" after test script write core dumps, to ensure + that subsequent operations have a complete one. + - test_signal_crashes.py: Drop the broken and obsolete test_local_python() + test. Instead, add two tests which check proper logging. + - launchpad.py: Fix urlopen() for Python3. Thanks Steve Langasek. + - test/run: Run the tests under LC_MESSAGES=C, to avoid failing tests on + translated strings. + * debian/control: Add libc6-dbg | libc6-dbgsym dependency to apport-retrace, + to ensure gdb can decipher the abort_msg_s struct and thus read assertion + messages. Also add libc6-dbg to debian/tests/control so that + report.test_add_gdb_info_abort can succeed in autopkgtest. + * debian/control, debian/tests/control: apport-retrace needs a terminal + emulator, so add an x-terminal-emulator dependency. Add xterm as build and + autopkgtest dependency, so that the tests have one available. + * debian/control: Drop python-launchpadlib from Depends to Suggests for + python-apport, too. + + [ Steve Langasek ] + * debian/rules: call dh_python3 with --skip-private, to avoid incorrect + generation of a .rtupdate script for /usr/share/apport. LP: #1013171. + + -- Martin Pitt Fri, 15 Jun 2012 08:27:17 +0200 + +apport (2.2.2-0ubuntu2) quantal; urgency=low + + * debian/control: Add python3-pykde4 build dependency for the test suite. + * debian/rules: Unset $TMPDIR during the tests, to work around LP #972324. + * Merge from trunk: + - test/test_signal_crashes.py: More verbose tests. + * debian/tests/upstream-system: Do not run in the source tree, as we want to + check the system-installed Apport. + * debian/tests/control: Explicitly depend on apport-kde and apport-gtk. + + -- Martin Pitt Wed, 13 Jun 2012 17:55:35 +0200 + +apport (2.2.2-0ubuntu1) quantal; urgency=low + + * debian/control: Add alternative gdb-minimal dependencies to + apport-{gtk,kde}. (LP: #1012405) + * debian/control: apport-kde: depend on python3-pykde4. + * debian/tests/control: Add missing python3 dependencies for the GUI tests. + * New upstream release: + - testsuite: Run with Python 3 by default. To test with Python 2, run + "PYTHON=python2 test/run". + - apport: Redefine sys.std{out,err} when redirecting output, as they are + None in Python 3 when being called from the kernel. + - test/test_signal_crashes.py: Clean up unexpected core dumps on failed + test cases. + - apport-gtk: Fix crash when closing the crash dialog while the + information is being collected. + - hookutils.py, xsession_errors(): Fix crash when running under a non-UTF8 + locale. + - data/apport: Do not use sys.stdin.fileno(), it is invalid when being + called from the kernel with Python 3. + - data/apport: When core dumps are enabled, read them from the written + report instead of directly from stdin (and then reading the written core + file into the .crash report). If the core file size is limited, we + otherwise stop reading the core dump from the kernel in the middle and + have no (or a broken) core dump to be put into the report. + - data/apport: Properly close the written crash report before changing its + permissions to be readable. This prevents having crash reporting UI from + looking at incomplete .crash files. + * debian/rules: drop explicit setting of $PYTHON, test suite is now run + with python3 by default. + + -- Martin Pitt Wed, 13 Jun 2012 13:08:51 +0200 + +apport (2.2.1-0ubuntu2) quantal; urgency=low + + * debian/control: Add back the Python 2 build dependencies, as we + are also doing a Python 2 build. + * debian/control: Add pyflakes build dependency, so that it can run during + the build. + + -- Martin Pitt Tue, 12 Jun 2012 06:38:26 +0200 + +apport (2.2.1-0ubuntu1) quantal; urgency=low + + * New upstream release: + - Clean up module imports. + - test/run: Run pyflakes, if available. + - package_hook: Add --tags option. Thanks to Brian Murray. + - launchpad.py: Drop the external multipartpost_handler.py (which is not + portable to Python 3) and replace it with using the standard email + module. + - launchpad.py: Also work with Python 3. Deal gracefully with a missing + "launchpadlib" module; this is not yet available for Python 3, but not + required for client-side reporting. + - apport-kde: Port to work with Python 3. + - apport-retrace: Fix crash when using the --procmaps option. + - setup.py: Update hashbang lines of installed scripts in data directory + to the python executable setup.py was run with, similar to what already + happens to scripts installed to ../bin/. + - apport-cli: Port to work with Python 3. + - setup.py: When fixing hashbang lines of installed scripts, only include + the major Python version. + - hookutils.py, read_file, attach_file(), attach_file_if_exists(): Convert + file contents to unicode if the contents is UTF-8, or the newly added + force_unicode argument is True. + - hooktuils, command_output(): Convert output to unicode by default, and + add a "decode_utf8" parameter to disable this. + - hookutils.py, recent_logfile(): Fix fd leak. + - data/apport: Do not assume that sys.stdout and sys.stderr always have a + name; they can be None in Python 3. + - data/dump_acpi_tables.py: Fix for Python 3. + * data/package-hooks/source_debian-installer.py: Port to work with Python 3. + * Move to Python 3, except for the parts that need python-launchpadlib + (which is not yet available for Python 3): + - debian/control: Add python3-problem-report and python3-apport packages. + - debian/control: Switch build and binary dependencies to Python 3 + equivalents, except for apport-retrace. + - debian/rules: Override dh_auto_* to also handle python3-* packages (see + Debian #597105). + - debian/rules: Run test suite with Python 3. + - debian/rules: Switch hashbang line of apport-retrace back to Python 2. + - Move /etc/apport/crashdb.conf from python-apport to apport, and + recommend apport from both python{,3}-apport. + * bin/apport-bug: Force running with python 2 when being invoked as + apport-collect, and add a check/error message that you need to install + python-apport to use this. + * test/test_hookutils.py: Drop duplicate definition of _get_mem_usage(), now + identical again to trunk. + * ./test/test_ui_gtk.py: Drop duplicate definition of + test_immediate_close(), now identical again to trunk. + * data/general-hooks/ubuntu.py: Do not decode result of command_output(), + this is done by default now. + * data/package-hooks/source_linux.py: Add a __main__ for debugging. Stop + importing hookutils into the global namespace. + * data/package-hooks/source_ubiquity.py: Fix undefined command_output(). + * data/general-hooks/ubuntu.py: Move definition of wrong_grub_msg and + grub_hook_failure to the correct place, so that this actually works. + * data/general-hooks/ubuntu.py: Drop definition of unused "cloud" variable. + * data/general-hooks/ubuntu.py: Do not import hookutils symbols into global + namespace. + + -- Martin Pitt Mon, 11 Jun 2012 12:23:53 +0200 + +apport (2.1.1-0ubuntu2) quantal; urgency=low + + [ Martin Pitt ] + * data/general-hooks/automatix.py: Fix whitespace according to PEP-8. + * data/general-hooks/ubuntu.py: Fix whitespace according to PEP-8. + * data/package-hooks/source_{linux,ubiquity}.py: Fix whitespace according to + PEP-8. + * debian/control: Add pep8 build dependency, to ensure folks test-build with + that. + * etc/apport/crashdb.conf: Re-enable Launchpad crash reporting again. + + [ Brian Murray ] + * data/general-hooks/ubuntu.py: collect /etc/default/grub on systems where a + package failed to install during update-grub (LP: #1006633) + + -- Martin Pitt Fri, 01 Jun 2012 15:44:54 +0200 + +apport (2.1.1-0ubuntu1) quantal; urgency=low + + [ Martin Pitt ] + * debian/control: Update Vcs-Bzr: for quantal branch. + * data/general-hooks/ubuntu.py: Do not assume that all reports have a + ProblemType field. This will not be the case for updating a bug with + "apport-collect". (LP: #1004029) + * New upstream release: + - launchpad.py: When closing a bug as a duplicate, copy some well-known + tags to the master bug. Thanks Brian Murray. + - launchpad.py: Set importance of Python crash reports to "Medium" by + default, similar to signal crashes. Thanks Brian Murray. + - hookutils.py: Add attach_default_grub() convenience function from the + grub2 package hook so it can be used by other packages. Thanks Brian + Murray. + - launchpad.py: Make Launchpad bug subscription user/team configurable: + The initial subscriber after filing a bug can be set with the + "initial_subscriber" crashdb option, and the team which gets subscribed + after retracing with "triaging_team". (LP: #980726) + - report.py: Do not change the SourcePackage: field if the binary package + is not installed and does not exist. This fixes source package hooks to + actually work in some cases where source and binary package names + overlap. (part of LP: #993810) + - apport-gtk, apport-kde: Avoid collecting information twice in "bug + update" mode. This caused a crash in cases where the source package in a + bug report does not correspond to an installed binary package. + (LP: #993810) + + [ Brian Murray ] + * data/general-hooks/ubuntu.py: block reporting of package install failures + with error regarding 'not a debian format archive' + + -- Martin Pitt Wed, 30 May 2012 09:06:49 +0200 + +apport (2.1-0ubuntu1) quantal; urgency=low + + * New upstream release: + - packaging.py, install_packages(): Add permanent_rootdir flag and if set, + only unpack newly downloaded packages. Implement it for the apt/dpkg + backend. Thanks Evan Dandrea. + - apport-retrace: Add --sandbox-dir option for keeping a permanent sandbox + (unpacked packages). This provides a considerable speedup. Thanks Evan + Dandrea. + - crash-digger: Add --sandbox-dir option and pass it to apport-retrace. + - Fix the whole code to be PEP-8 compatible, and enforce this in test/run + by running the "pep8" tool. + - GTK UI tests: Ensure that there are no GLib/GTK warnings or criticals. + - Support Python 3. Everything except the launchpad crashdb backend now + works with both Python 2 and 3. An important change is that the load(), + write(), and write_mime() methods of a ProblemReport and apport.Report + object now require the file stream to be opened in binary mode. + - data/apport: Ignore a crash if the executable was modified after the + process started. This often happens if the package is upgraded and a + long-running process is not stopped before. (LP: #984944) + - Add test cases for apport-unpack. + - apport-retrace: Add information about outdated packages to the + "RetraceOutdatedPackages" field. + - ui.py: Drop python-xdg dependency, use ConfigParser to read the .desktop + files. + - apport-gtk: Work around GTK crash when trying to set pixmap on an + already destroyed parent window. (LP: #938090) + - data/dump_acpi_tables.py: Fix crash on undefined variable with + non-standard tables. (LP: #982267) + - backends/packaging-apt-dpkg.py: Fix crash if a package is installed, but + has no candidates in apt. (LP: #980094) + - data/general-hooks/generic.py: Bump minimum free space requirement from + 10 to 50 MB. 10 is not nearly enough particularly for /tmp. (LP: #979928) + - hookutils.py, recent_logfile(): Use a default limit of 10000 lines and + call "tail" instead of reading the whole file. This protects against + using up all memory when there are massive repeated log messages. + (LP: #984256) + - apport-gtk: Do not assume that an icon requested for size 42 actually + delivers size 42; some themes do not have this available and deliver a + smaller one instead, causing overflows. Also, copy the image as + gtk_icon_theme_load_icon() returns a readonly result which we must not + modify. (LP: #937249) + - ui.py: Don't show the duplicate warning when the crash database does not + accept the problem type, and they are just being sent to whoopsie. + Thanks Evan Dandrea. (LP: #989779) + - report.py: Correctly escape the file path passed to gdb. + - apport-gtk, apport-kde: Do not show the information collection progress + dialog if the crash database does not accept this kind of report. In that + case whoopsie will upload it in the background and the dialog is not + necessary. (LP: #989698) + * data/general-hooks/ubuntu.py, data/general-hooks/automatix.py: Support + Python 3. + + -- Martin Pitt Fri, 18 May 2012 16:33:53 +0200 + +apport (2.0.1-0ubuntu7) precise-proposed; urgency=low + + * Fix (LP: #989779). Don't show the duplicate warning when we're just + reporting to daisy.ubuntu.com. + + -- Evan Dandrea Fri, 27 Apr 2012 16:53:11 +0100 + +apport (2.0.1-0ubuntu6) precise-proposed; urgency=low + + * Cherry-pick from trunk: + - hookutils.py, recent_logfile(): Use a default limit of 10000 lines and + call "tail" instead of reading the whole file. This protects against + using up all memory when there are massive repeated log messages. + (LP: #984256) + - apport-gtk: Do not assume that an icon requested for size 42 actually + delivers size 42; some themes do not have this available and deliver a + smaller one instead, causing overflows. Also, copy the image as + gtk_icon_theme_load_icon() returns a readonly result which we must not + modify. Fixes crashes when using themes other than the standard Ubuntu + ones. (LP: #937249) + + -- Martin Pitt Fri, 20 Apr 2012 18:53:24 +0200 + +apport (2.0.1-0ubuntu5) precise-proposed; urgency=low + + * etc/apport/crashdb.conf: Disable Launchpad crash/kernel reports for the + final release. Leave Apport running for whoopsie, though, so use the new + mechanism for selective problem types. + * Cherry-pick from trunk: + - data/general-hooks/generic.py: Bump minimum free space requirement from + 10 to 50 MB. 10 is not nearly enough particularly for /tmp. + (LP: #979928) + + -- Martin Pitt Wed, 18 Apr 2012 10:08:28 +0200 + +apport (2.0.1-0ubuntu4) precise; urgency=low + + * Cherry-pick from trunk: + - data/dump_acpi_tables.py: Fix crash on undefined variable with + non-standard tables. (LP: #982267) + - backends/packaging-apt-dpkg.py: Fix crash if a package is installed, but + has no candidates in apt. (LP: #980094) + - Launchpad automatic translations update. + * debian/control: Drop duplicated python-gi build dependency, thanks + lintian. + + -- Martin Pitt Mon, 16 Apr 2012 16:29:04 +0200 + +apport (2.0.1-0ubuntu3) precise; urgency=low + + * Cherry-pick from trunk: + - GTK UI tests: Ensure that there are no GLib/GTK warnings or criticals. + - apport-gtk: Work around GTK crash when trying to set pixmap on an + already destroyed parent window. (LP: #938090) + + -- Martin Pitt Fri, 13 Apr 2012 19:42:02 +0200 + +apport (2.0.1-0ubuntu2) precise; urgency=low + + * debian/general-hooks/ubuntu.py: if the package installation failure is + from live media check to see that /cdrom, the real root filesystem, has + enough free space + + -- Brian Murray Wed, 11 Apr 2012 15:41:01 -0700 + +apport (2.0.1-0ubuntu1) precise; urgency=low + + * New upstream bug fix release. Changes since our previous snapshot: + - problem_report.py, write_mime(): Fix regression from version 1.95: Add a + value as attachment if it is bigger than 1000 bytes, not if it is bigger + than 100. (LP: #977882) + - packaging-apt-dpkg.py: Avoid constructing and updating the apt.Cache() + objects multiple times, to speed up retracing. Thanks Evan Dandrea. + (LP: #973494) + + -- Martin Pitt Tue, 10 Apr 2012 15:38:11 +0200 + +apport (2.0-0ubuntu5) precise; urgency=low + + * Merge from trunk: + - generic package hook: Also check /tmp for enough space. Thanks Brian + Murray. (LP: #972933) + - Automatic Launchpad translation updates. + + -- Martin Pitt Tue, 10 Apr 2012 07:34:08 +0200 + +apport (2.0-0ubuntu4) precise; urgency=low + + * debian/tests/upstream-system: Drop dead code. + * debian/tests/upstream-system: Work around LP #972324 by unsetting TMPDIR + for the tests. + * Merge test fixes from trunk: + - test_backend_apt_dpkg.py: Fix checks for the installation of -dbgsym + packages. This should always happen, as the sandboxes have a ddeb apt + source. Only make it conditional on the system apt sources in the "use + system config" test. + - test_report.py: Sleep a bit after calling our test crash script, to + ensure the kernel has time to finish writing the core file. + + -- Martin Pitt Tue, 03 Apr 2012 14:17:38 +0200 + +apport (2.0-0ubuntu3) precise; urgency=low + + [ Martin Pitt ] + * data/general-hooks/ubuntu.py: Do not capture stderr of lsb_release. + (LP: #955111) + + [ Scott Moser ] + * data/general-hooks/ubuntu.py: timeout on attempts to contact ec2 metadata + service (LP: #855651) + + -- Martin Pitt Tue, 03 Apr 2012 06:58:07 +0200 + +apport (2.0-0ubuntu2) precise; urgency=low + + * debian/control: Make dh-apport Multi-Arch: foreign, so that it can + satisfy cross-build-dependencies. + + -- Colin Watson Sat, 31 Mar 2012 02:29:55 +0100 + +apport (2.0-0ubuntu1) precise; urgency=low + + * New upstream release: This is the final 2.0 release, featuring the + overhauled and simplified GUI, support for whoopsie-daemon, and + client-side duplicate checking. + - report.py, anonymize(): Only replace whole words, not substrings. + (LP: #966562) + - apport_python_hook.py: Fix filtering of + org.freedesktop.DBus.Error.NoReply exceptions. (LP: #958575) + - crashdb.py: When publishing the crash database, cut hash file names + after quoting, to avoid that the quoting causes them to become too long. + (LP: #968070) This also uncovered that known() did not actually find any + signature which contained an URL-quoted character, therefore breaking + client-side duplicate checking in a lot of cases. Double-quote the file + name now, as urlopen() unquotes it. + - Add a new crash database option "problem_types" and a CrashDatabase + method "accepts(report)". This can be used to stop uploading particular + problem report types to that database. E. g. a distribution might decide + to not get "Crash" reports any more after release. Document the new + option in doc/crashdb-conf.txt. + - ui.py: Do not upload a report if the crash database does not accept the + report's type. This behaviour is not really correct, but necessary as + long as we only support a single crashdb and have whoopsie hardcoded. + Once we have multiple crash dbs, we need to not even present the data if + none of the DBs wants the report. See LP #957177 for details. + (LP: #968121) + - ui.py: Do not short-circuit information collection if report already has + a "DistroRelease" field, as the GUIs add that in some cases. Check for + "Dependencies" instead. This fixes information collection for kernel + problems (which now has a full GTK GUI test case). (LP: #968488) + * Merge from trunk: + - test_ui_gtk.py: Disable package hooks for the tests, as they might ask + for sudo passwords and other interactive bits, and thus make the tests + hang. + + -- Martin Pitt Fri, 30 Mar 2012 12:38:02 +0200 + +apport (1.95-0ubuntu1) precise; urgency=low + + [ Martin Pitt ] + * New upstream release: + - apport-gtk, apport-kde: When reporting a "system crash", don't say "... + of this program version", but "...of this type", as we don't show a + program version in the initial dialog + (https://wiki.ubuntu.com/ErrorTracker#error) (LP: #961065) + - problem_report.py, write_mime(): Do not put a key inline if it is bigger + than 1 kB, to guard against very long lines. (LP: #957326) + - etc/cron.daily/apport: Do not remove whoopsie's *.upload* stamps every + day, only if they are older than a week. whoopsie comes with its own + cron job which deals with them. Thanks Steve Langasek. (LP: #957102) + - report.py, mark_ignore(): Fix crash if executable went away underneath + us. (LP: #961410) + - apport-gtk: Do not compare current continue button label against a + translated string. Instead just remember whether or not we can restart + the application. (LP: #960439) + - hookutils.py, command_output(): Add option to keep the locale instead of + disabling it. + - hookutils.py, command_output(): Actually make the "input" parameter + work, instead of causing an eternal hang. Add tests for all possible + modes of operation. + - hooktuils.py: Change root_command_output() and + attach_root_command_outputs() to disable translated messages + (LC_MESSAGES=C) only as part of the command to be run, not already for + the root prefix command. This will keep the latter (gksu, kdesudo, etc.) + translated. (LP: #961659) + - apport-gtk: Cut off text values after 4000 characters, as Gtk's TreeView + does not get along well with huge values. KDE's copes fine, so continue + to display the complete value there. (LP: #957062) + - apport-gtk: Make details window resizable in bug reporting mode. + - crashdb.py, known(): Check the address signature duplicate database if + the symbolic signature exists, but did not find any result. (LP: #103083) + - ui.py: Run anonymization after checking for duplicates, to prevent host + or user names which look like hex numbers to corrupt the stack trace. + (LP: #953104) + - apport-gtk: Require an application to both have TERM and SHELL in its + environment to consider it a command line application that was started + by the user. (LP: #962130) + - backends/packaging-apt-dpkg.py, _check_files_md5(): Fix double encoding, + which caused UnicodeDecodeErrors on non-ASCII characters in an md5sum + file. (LP: #953682) + - apport-kde, apport-gtk: Only show "Relaunch" if the report has a + ProcCmdline, otherwise we cannot restart it. (LP: #956173) + - apport-gtk, apport-kde: Show the ExecutablePath while we're collecting + data for the crash report. Thanks Evan Dandrea. (LP: #938707). + * debian/copyright: Change to copyright format 1.0. + * debian/control: Bump Standards-Version to 3.9.3. + + [ Brian Murray ] + * data/general-hooks/ubuntu.py: use main.log to determine UpgradeStatus not + apt.log (LP: #886111) + + -- Martin Pitt Thu, 22 Mar 2012 18:55:17 +0100 + +apport (1.94.1-0ubuntu2) precise; urgency=low + + * Merge from trunk: + - ui.py: Ensure that the report file is readable by the crash reporting + daemon after running through collect_info(). Thanks Evan Dandrea. + - apport-gtk, apport-kde: Set the window title to the distribution name, as + per http://wiki.ubuntu.com/ErrorTracker#error . Thanks Evan Dandrea. + (LP: #948015) + - test/run: Ignore obsolete packages on the system, to avoid breaking the + GUI tests due to them. + - hookutils.py, attach_alsa(): Add the full "pacmd list" output instead of + just sinks and sources. Thanks David Henningsson. + - apport-gtk: Fix handling of non-ASCII strings in message dialogs. + (LP: #865394) + + -- Martin Pitt Fri, 09 Mar 2012 16:52:53 +0100 + +apport (1.94.1-0ubuntu1) precise; urgency=low + + * New upstream bug fix release. Changes since our previous snapshot: + - apport-cli: Consistently handle unicode vs. byte arrays. (LP: #946207) + - report.py, anonymize(): Fix crash when the hostname or user name contain + non-ASCII characters. (LP: #945230) + - packaging-apt-dpkg.py: Fix UnicodeDecodeError on unexpected md5sum output. + (LP: #921037) + - apport-gtk: Fix handling of non-ASCII strings in message dialogs. + (LP: #865394) + + -- Martin Pitt Wed, 07 Mar 2012 14:47:31 +0100 + +apport (1.94-0ubuntu2) precise; urgency=low + + * Merge from trunk: + - collect_info(): Do not assume that reports have a "ProblemType" field. + This is not the case when updating a bug. (LP: #947519) + - Re-enable inadvertently disabled "bug report for uninstalled package" + test. + - Update translations from Launchpad. + + -- Martin Pitt Tue, 06 Mar 2012 11:37:17 +0100 + +apport (1.94-0ubuntu1) precise; urgency=low + + [ Martin Pitt ] + * New upstream release: + - apport: Set the group of written reports to "whoopsie" if that group + exists. + - Fix tests to run properly against the system-installed modules and + binaries. + - test/run: Run under LC_MESSAGES=C to avoid test failures due to + translated strings. + - general-hooks/generic.py: Also attach xsession-errors for programs that + link to libgtk-3. + - launchpad.py: Properly handle "Expired" status, to avoid marking new + bugs as duplicates of expired ones. (LP: #941854) + - apport: Fix crash if the "whoopsie" group does not exist. (LP: #942326) + - report.py, crash_signature(): Do not put "" frames into Python + crash signatures that happen outside of function/method calls. Fall back + to the file/line number as a frame description instead. This will do a + much better job at disambiguating e. g. different ImportError crashes. + (LP: #920403) + - Make "binary changed since the time of the crash" error message more + comprehensible, thanks Paolo Rotolo. (LP: #942830) + - crashdb.py, check_duplicate(): It can happen that a bug gets identified + as being a duplicate of bug S by symbolic signatures and a duplicate of + bug A by address signatures. Empirical evidence shows that this is due + to the unavoidable jitter in stack traces (A and S not being identified + as duplicates as their signatures differ slightly) and not a logic + error. So instead of erroring out, duplicate all three bugs and keep the + lowest number as the master ID. (LP: #943117) + - Revert the usage of multiple nested threads during data collection, and + switch back to only using one UI thread. The UI implementations can, and + now do, decide between showing a spinner and showing a progress dialog + in the ui_*_info_collection_progress() methods. This fixes libX11 + crashes when multiple UI threads do changes concurrently (LP: #901675), + and also avoids multi-thread induced crashes in Pango (LP: #943661). The + removal of the collect() method also fixes the new crashes in it. + (LP: #942098, #939803) + - ui.py, get_desktop_entry(): Fix crash on uninstalled package. + (LP: #940984) + - data/unkillable_shutdown: Fix crash on race condition when PID goes away + while the report is created. (LP: #546369) + - apport/hookutils.py, pci_devices(): Fix crash on unexpected lines from + lspci. (LP: #904489) + - Drop hardcoded "Ubuntu" words again which crept in with the whoopsie + support merge. Use the DistroRelease: field. + - apport-kde: Fix Home page URL in KApplication metadata. + - apport-gtk: Fix resizability and size after hiding details. + (LP: #405418) + - test/run: Drop "local" argument. This now tests against the source tree + when run in the source tree root, and against the system + libraries/programs when run from anywhere else. + - test/run: Consider command line arguments as test names and only run + those when given. Also support just running a single test. + - testsuite: Force the skipping of online tests when $SKIP_ONLINE_TESTS is + set. + - hookutils.py, xsession_errors(): Add a reasonable default pattern which + matches glib-style warnings, errors, criticals etc. and X window errors. + In data/general-hooks/generic.py, call it with that default instead of + the rather incomplete custom pattern. (LP: #932660) + - packaging.py: Add get_package_origin() method, and implement it for + apt-dpkg. + - report.py, add_package_info(): Add "[origin: ...]" tag to "Package" and + "Dependencies" fields for any package which is not native to the + distribution. If any such package is present, tag the report with + "third-party-packages" in data/general-hooks/generic.py. (LP: #927912) + - apport/packaging.py: Add get_uninstalled_package() method as a helper + method for the test suite. Use it instead of a hardcoded Debian/Ubuntu + specific name in test/test_hooks.py. + - test/test_ui_{gtk,kde}.py: Add test cases for complete UI workflow runs + for reporting a bug against an installed/uninstalled package, and + reporting a crash with and without showing details. This reproduces the + recent crashes like LP #901675 or LP #943661. + - test_ui.py: Add a test case for reporting a complete report on + uninstalled package. This happens when reporting a problem from a + different machine through copying a .crash file. + - test/run: Add a test that there are no hardcoded "Ubuntu" words in the + source. The code should use the DistroRelease: field or lsb_release. + * debian/apport-retrace.install: Ship crash-digger. There is no reason any + more not to, as it's now very easy to set up a retracer bot environment. + * debian/apport.install: Install crash.{class,jar} into test suite + directory, so that the test_java_crashes.py test can run. + * debian/control: Tighten dependencies to ensure that we don't run a newer + UI package against an older python-apport, which would cause crashes due + to API mismatches. (LP: #939702) + * Drop test/test_backend_rpm.py, as we also drop the RPM backend in the + Ubuntu branch. + * debian/rules: Update test suite invocation, the "local" argument is + obsolete. + + [ Brian Murray ] + * data/package-hooks/source_linux.py: add in ProcFB + + -- Martin Pitt Fri, 02 Mar 2012 15:32:07 +0100 + +apport (1.93-0ubuntu2) precise; urgency=low + + [ Martin Pitt ] + * debian/control: Add python-launchpadlib and psmisc build dependencies for + the test suite. + * Merge from trunk: + - apport: Set the group of written reports to "whoopsie" if that group + exists. + + [ Brian Murray ] + * data/package-hooks/source_ubiquity.py: prevent reporting of bugs where + there was an I/O error with the disk being installed to or from + (LP: #874727) + + -- Martin Pitt Thu, 23 Feb 2012 17:54:54 +0100 + +apport (1.93-0ubuntu1) precise; urgency=low + + * New upstream bug fix release: + - apport-gtk: Fix crash on nonexisting icon. Thanks Evan Dandrea. + (LP: #937354) + - ui.py, open_url(): Revert back to calling sudo instead of dropping + privileges ourselves; with the latter, calling firefox as the sudo'ing + user fails. (LP: #916810, #938128) + - ui.py: Fix aborting with "AssertionError" if the report is already + known, but without an URL. (LP: #938778) + - launchpad.py: If a bug is already known, but the report is private, do + not send the report. There is little sense piling up lots of duplicates. + (LP: #938700) + - test/crash: Fix regression of test_crash_apport(), consider $TERM a + non-sensitive variable. + - ui.py: Fix test failures for data collection progress, they are not + expected to happen for "ProblemType: Crash" any more (happens in the + background during sending, or if user clicks on "Show Details"). + - test/hooks: Use a package from Debian/Ubuntu main, so that this works + better during package builds on build servers. + - test/python: Do not assume that /var/crash/ exists. Use /var/tmp/ for + the fake binaries instead. + - data/general-hooks/parse_segv.py: Fix test case name. + - ui.py: Fix crash on invalid core dumps. (LP: #937215) + - launchpad.py: Fix crash on unicode report titles. (LP: #896626) + - apport-gtk: Show the most interesting fields first in the details view. + - do-release: Call pyflakes and abort on errors other than unused imports. + - Move all test suites out of the code modules into test/test_.py. + This avoids having to load it every time the program runs, and also + allows running the tests against the installed version of Apport. + - Clean up the other executable test script in test/* and change them to + the same structure as the module tests. + * debian/control: Add python-mock and GTK gir build dependencies for the + gtk/kde tests. + * debian/control: Add procps dependency to avoid a "command not found" error + for killall in the ubuntu.py general hook during the test suite. + * debian/control: Add missing python-gi dependency to apport-gtk. + + -- Martin Pitt Thu, 23 Feb 2012 16:22:37 +0100 + +apport (1.92-0ubuntu1) precise; urgency=low + + [ Martin Pitt ] + * New upstream release: + - man/apport-bug.1: Mention where crash files are stored. Thanks David + Kastrup. + - hookutils.py, attach_hardware(): Sort ProcModules, thanks Brian Murray. + - launchpad.py: Keep "Dependencies" attachment in duplicates. Thanks Brian + Murray. + - Reorganize the GNOME and KDE user interface to do the crash + notifications and detail browser in a single dialog. Add test/gtk and + test/kde tests to check expected dialog layout for different cases. + Thanks Evan Dandrea! + - Add support for the whoopsie-daisy crash reporting daemon by creating + zero-byte .upload file stamps for crash reports. Thanks Evan Dandrea! + - ui.py: Fix wrong creation of "~" folder instead of expanding it to home + directory when using "Examine locally". Thanks Jason Conti! + (LP: #909149) + - Replace file() calls with open() for Python 3 compatibility. Thanks + Colin Watson! + - launchpad.py: Avoid sending tag names with upper case. (LP: #924181) + - report.py, crash_signature_addresses(): Fix crash if report does not + have "Signal". + - apport-gtk: Fix resize handling of expander in details window. Thanks + Thomas Bechtold! (LP: #930562) + - Clean up unnecessary imports. Thanks Evan Dandrea! + * debian/apport-kde.install: Ship new spinner.gif. + + [ Brian Murray ] + * data/package-hooks/source_ubiquity.py: include kernel command line from + ubiquity syslog in the report as InstallCmdLine + * data/package-hooks/source_ubiquity.py: move apport-bug failures due to + grub-installer to that package (LP: #878335) + * debian/control: Add xvfb dependency so that the test suite can run the GUI + tests. + + -- Martin Pitt Mon, 20 Feb 2012 16:55:29 +0100 + +apport (1.91-0ubuntu1) precise; urgency=low + + * New upstream release: + - crashdb.py, check_duplicate(): If a crash has a signature but no + existing duplicate in the DB, also check for an existing address + signature duplicate in the DB. + - apport-retrace: Use DistroRelease specific subdirectory of the cache dir + for mapping a file to a package, as these maps are release specific. + - packaging-apt-dpkg.py: Refresh Contents.gz cache if it is older than one + day. + - crashdb.py: Ensure that address_signature duplicate db table does not + have multiple identical signatures by making it a primary key. Bump the + db format to "3". Existing databases need to be migrated manually as + SQLite does not allow adding a "PRIMARY KEY" constraint to existing + tables. + - crashdb.py: Do not add a new address signature entry if one already + exists. + - apport-cli: Fix UnicodeDecodeError on unicode report values. + (LP: #275972) + - launchpad.py: Only set bug task importance if it is undecided. + - apport-retrace: Fix "an useful" typo. (LP: #911437) + - report.py: Filter out frames which are internal kernel/glibc + implementation details and not stable across duplicates. In particular, + filter out __kernel-syscall() and the SSE stubs. + - crashdb.py: Remove debugging leftover which completely disabled bug + pattern checking. + - report.py: Update reading AssertionMessage. Current (e)glibc turned + __abort_msg from a simple static string into a struct. + - Change permissions of .crash files from 0600 to 0640, so that /var/crash + can be made g+s and crash handling daemons can access those. + - Python exceptions: Blacklist DBus.Error.NoReply. It does not help to get + these traces from the client-side application, you need the actual + exception in the D-Bus server backend instead. (LP: #914220) + - Support /etc/apport/whitelist.d/ similarly to /etc/apport/blacklist.d/, + for cases like installer environments where only crashes of a few selected + programs should be reported. + + -- Martin Pitt Wed, 18 Jan 2012 09:56:00 +0100 + +apport (1.90-0ubuntu2) precise; urgency=low + + [ Martin Pitt ] + * debian/control: Move from transitional python-gobject to python-gi. + * debian/control: Add gdb dependency to apport-retrace. + * apport/crashdb.py: Remove debugging leftover which completely disabled bug + pattern checking. Cherrypicked from trunk r2120. + + [ Brian Murray ] + * data/general-hooks/ubuntu.py: improve match for hard disk errors + * data/package-hooks/source_ubiquity.py: tag ubiquity bugs ubiquity-upgrade + * data/package-hooks/source_linux.py: disable question regarding uploading + oops to kerneloops.org + + -- Martin Pitt Fri, 13 Jan 2012 16:58:28 +0100 + +apport (1.90-0ubuntu1) precise; urgency=low + + * New upstream release: First beta release of 2.0 which introduces + client-side duplicate checking. + - report.py: Break out new method stacktrace_top_function() from + standard_title(), so that other parts of the code can use this as well. + - launchpad.net: When sending retraced results back to the bug report, + update the topmost function in the bug title. (LP: #869970) + - report.py, add_gdb_info(): Add a new field "StacktraceAddressSignature" + which is a heuristic signature for signal crashes. This should be used + if crash_signature() fails, i. e. the Stacktrace field does not have + enough symbols. This can be used to check for duplicates on the client + side, provided that the crash database server supports querying for + these. Do not expose this field when uploading to crash databases + though, as it can be recomputed from the already existing information + (ProcMaps and Stacktrace) and thus would just clutter the reports. + - crashdb.py: Add a table "version" with the database format version. Add + automatic upgrading to the most current format. + - crashdb.py: Put address signatures from reports checked with + check_duplicate() into the duplicate database, so that implementations + of known() can check for these. + - dupdb-admin: Add "publish" dupdb-admin command which exports the + duplicate database into a set of text files suitable for WWW publishing. + - crashdb.py: Add new method "known(report)" which can be implemented to + check if the crash db already knows about the crash signature. If so, + the report will not be uploaded, and instead the user will be directed + to the existing report URL (if available), similar to bug patterns. The + default implementation checks this format, if the crash database is + initialized with a "dupdb_url" option pointing to the exported database. + - launchpad.py: Override known() to check if the master bug is actually + accessible by the reporter, and is not tagged with "apport-failed-retrace" + or "apport-request-retrace"; otherwise file it anyway. + - crash-digger: Add --publish-db option to conveniently integrate + duplicate DB publication (similar to dupdb-admin publish) into retracer + setups. + - launchpad.py: Attach updated stack traces from a duplicate to the master + bug if it failed retracing previously or has an "apport-request-retrace" + tag. (LP: #869982) + - apport-kde, apport-gtk: Support the "Annotation" field for custom dialog + titles for "Crash" and "Package" problem types as well, not just for + "Kernel". (LP: #664378) + - backends/packaging-apt-dpkg.py: Fix another test case failure when ddeb + repository is not enabled. + - backends/packaging-apt-dpkg.py: Fix handling of explicit cache directory + name when it is a relative path. + - launchpad.py: Only query for bugs after 2011-08-01, to avoid timeouts. + - ui.py: Also anonymize standard bug title. (LP: #893863) + - launchpad.py: Current Launchpad cannot have private bugs which affect + multiple projects. Fix test suite accordingly. + * data/general-hooks/ubuntu.py: Fix crash if "apport" package is not + installed, which might happen on local installs or running the test suite. + * etc/default/apport: Re-enable Apport by default; we want reports early in + Precise, and we also do not have unstable GNOME versions this time which + have known problems. We also have client-side duplicate detection now + which should mitigate the noise. + * Drop debian/pyversions, debian/pycompat: Obsolete with dh_python2. + + -- Martin Pitt Thu, 24 Nov 2011 16:17:16 +0100 + +apport (1.26-0ubuntu1) precise; urgency=low + + * New upstream release: + - backends/packaging-apt-dpkg.py: Port to current python-apt API. + - hookutils.py: Fix path_to_key() to also work with unicode arguments. + - test/crash: Exit successfully if apport is not enabled in the system. + This allows packages to run the test suite during build. + - report.py, add_proc_info(): Correctly handle "python -m " + programs as being interpreted and determine the appropriate module path. + - Fix some import statements to also work for the system-installed test + suite. + - test/run: Fix testing data/general-hooks/parse_segv.py when called in + system-installed mode. + - apport/ui.py: Clean up test .crash file after test cases. + - Fix tests when running as root. + - setup.py: Fix crash when "javac -version" fails. + - README: Update command for one-time enablement. + - backends/packaging-apt-dpkg.py: Fix interleaving usage of + install_packages() with other operations such as get_version(), by + resetting the apt status after building and using the sandbox. + - report.py test suite: Remove requirement that $USER is set, which makes + it easier to run this from package build environments. + - apport/ui.py, test/crash: Use "yes" as test process instead of "cat". + The former is less likely to run already, and does not depend on having + a stdin, so it runs better in test environments like autopkgtest. + - backends/packaging-apt-dpkg.py: Fix tests if system does not have a + dbgsym apt source. + - Ignore a crash if gnome-session is running and says that the session is + being shut down. These often die because X.org or other services are + going away, are usually harmless, and just cause a lot of clutter in bug + trackers. (LP: #460932) + - test/crash: Rewrite using Python's unittest, to be in line with other + tests, and be easier to maintain and extend. + * Add debian/tests/control and debian/tests/upstream-system: + DEP-8/autopkgtest control file for running the upstream tests. + * debian/control: Bump minimal Python version to 2.7, as the upstream trunk + is now moving to Python 3 compatibility; some of the new syntax does not + work with 2.6 yet. + * debian/control: Update apport-retrace package description, apport-chroot + is gone. Also drop the now obsolete Suggests. + * debian/rules: Run tests during package build, but do not let them fail the + build just yet. It will still take a while until all test suceed in the + buildd environment. + * debian/control: Add gdb and python-twisted-core build dependencies, so + that the test suite can succeed. + * debian/control: Move python-gobject and gir1.2-glib-2.0 dependencies from + apport-gtk to apport, as our generic.py hook needs it. Also add them to + build depends for the test suite. + * debian/control: Add missing lsb-release dependency, used by + Report.add_os_info(). + * debian/control: Add net-books build dependency, test suite uses "route" to + determine whether or not to run the online tests. + + -- Martin Pitt Fri, 11 Nov 2011 11:32:49 +0100 + +apport (1.25-0ubuntu1) precise; urgency=low + + * New upstream release: + - Add new response "Examine locally" to presenting the report details, + which runs apport-retrace in the chosen mode in a terminal. This should + be made available for crash reports if apport-retrace and a Terminal + application are installed; add an abstrace UI method for this. + (LP: #75901) + - apport-gtk: Add "Examine locally..." button, and implement + ui_run_terminal(). + - apport-cli: Add "Examine locally..." responses, and implement + ui_run_terminal(). + - apport-cli: Greatly speed up displaying large reports. This also changes + the format to avoid indenting each line with a space, and visually set + apart the keys in a better way. + - apport_python_hook.py: Move tests out of this file into test/python, to + avoid having to parse the unit tests at each Python startup. + - test/python: Also make tests work if Python hook is not installed in + system's sitecustomize.py. + - packaging.py: Add get_modified_conffiles() API, and implement it in + packaging-apt-dpkg.py. + - hookutils.py: Add attach_conffiles(). + - hookutils.py: Add attach_upstart_overrides(). + - launchpad.py: Remove "Ubuntu" in bug response, replace with "this + software". (LP: #883234) + - apport-kde: Rearrange order of imports to get intended error message if + PyKDE is not installed. + - packaging-apt-dpkg.py: Ignore hardening-wrapper diversions, to make + gcc_ice_hook work if hardening-wrapper is installed. + - apport_python_hook: Respect $APPORT_REPORT_DIR. + - apport_python_hook: Limit successive crashes per program and user to 3 + per day, just like signal crashes. (LP: #603503) + - packaging-apt-dpkg.py: Skip online tests when there is no default route. + - ui.py: Fix test suite to not fail if system has some obsolete or + non-distro packages. + + -- Martin Pitt Wed, 02 Nov 2011 20:45:08 -0400 + +apport (1.24-0ubuntu1) precise; urgency=low + + * New upstream release 1.23.1: + - apport/crashdb.py: Ensure that duplicate table only has one entry per + report ID. + - apport-retrace: Pass correct executable path to gdb in --gdb with + --sandbox mode. + - apport-retrace: Do not leave behind temporary directories on errors. + - apport-retrace: Drop assertion failure for existance of "Stacktrace". + This isn't present in the case of gdb crashing, and there is not much we + can do about it. This should not break the retracer. + - apport/report.py: Unwind XError() from stack traces for the + "StacktraceTop" field, as they take a significant part of the trace. + This causes bugs to be duplicated which really have different causes. + * New upstream release 1.24: + - apport-retrace: Add --timestamp option to prepend a timestamp to log + messages. This is useful for batch operations. + - crash-digger: Call apport-retrace with --timestamps, to get consistent + timestamps in log output. + - hookutils.py: Add two new functions attach_gsettings_package() and + attach_gsettings_schema() for adding user-modified gsettings keys to a + report. (LP: #836489) + - hookutils.py: Add new function in_session_of_problem() which returns + whether the given report happened in the currently running XDG session. + This can be used to determine if e. g. ~/.xsession-errors is relevant and + should be attached. + - backends/packaging-apt-dpkg.py, install_packages(): Also copy + apt/sources.list.d/ into sandbox. + - backends/packaging-apt-dpkg.py, install_packages(): Install apt keyrings + from config dir or from system into sandbox. (LP: #856216) + - packaging.py, backends/packaging-apt-dpkg.py: Define that + install_packages() should return a SystemError for broken + configs/unreachable servers etc., and fix the apt/dpkg implementation + accordingly. + - apport-retrace: Don't crash, just give a proper error message if servers + are unreachable, or configuration files are broken. (LP: #859248) + - backends/packaging-apt-dpkg.py: Fix crash when + /etc/apport/native-origins.d contains any files. (LP: #865199) + - hookutils, recent_logfile(): Fix invalid return value if log file is not + readable. (LP: #819357) + - test/crash: Fix race condition in the "second instance terminates + immediately" check. + - hookutils.py: Replace attach_gconf() with a no-op stub. It used static + python modules like "gconf" which broke the PyGI GTK user interface, and + gconf is rather obsolete these days. + - ui.py, open_url(): Greatly simply and robustify by just using xdg-open. + This already does the right thing wrt. reading the default browser from + GNOME, KDE, XCE, and other desktops. (LP: #198449) + - data/general-hooks/generic.py: Only attach ~/.xsession_errors if the bug + is reported in the same XDG session as the crash happened. (LP: #869974) + - Ignore crashes for programs which got updated in between the crash and + reporting. (LP: #132904) + - Special-case crashes of 'twistd': Try to determine the client program and + assign the report to that, or fail with an UnreportableReason. + (LP: #755025) + - apport-gtk: In bug update mode, make details dialog resizable and fix + default size. (LP: #865754) + - apport-gtk: Fix crash if report does not have ProcCmdline. (LP: #854452) + - hookutils.py, attach_wifi(): Anonymize ESSID and AP MAC from "iwconfig" + output. (LP: #746900) + - test/crash: Fix test failure if user is not in any system groups. + - test/crash: Change to /tmp/ for test crash process, to fix failure if the + user that runs the test suite cannot write into the current directory. + (LP: #868695) + - ui.py: Improve error message if package is not a genuine distro package. + Thanks to Ronan Jouchet. (LP: #559345) + * debhelper/dh_apport: Install debian/source.apport into the first binary + package only, as per documentation. (LP: #687584) + * debian/apport.upstart: Exit pre-start with 0 if apport is disabled, to + avoid warning message about failed startup. (LP: #857086) + * debian/control: Update Vcs-Bzr: for precise branch. + + -- Martin Pitt Wed, 19 Oct 2011 09:39:41 +0200 + +apport (1.23-0ubuntu3) oneiric; urgency=low + + * etc/default/apport: Disable for final Oneiric release. + + -- Martin Pitt Wed, 05 Oct 2011 16:41:07 +0200 + +apport (1.23-0ubuntu2) oneiric; urgency=low + + [ Martin Pitt ] + * debian/control: Bump GIR dependencies to ensure that we don't run this + against older versions against gir1.2-glib-2.0, which still have a wrong + API for markup_escape_text(). (LP: #851450) + + [ Brian Murray ] + * data/general-hooks/ubuntu.py: also check CurrentDmesg for disk errors + as some package hooks add it + * data/package-hooks/source_debian-installer.py: for dmraid collection use + attach_root_command_outputs (LP: #856826) + + -- Martin Pitt Wed, 28 Sep 2011 07:12:19 +0200 + +apport (1.23-0ubuntu1) oneiric; urgency=low + + [ Brian Murray ] + * data/package-hooks/source_ubiquity.py: Do not create a DuplicateSignature + for bugs with a Traceback included as it is redundant + + [ Martin Pitt ] + * New upstream release: + - crashdb.py, crash-digger, dupdb-admin: Drop the concept of "duplicate DB + consolidation". Such massive queries cause timeouts with e. g. + Launchpad. Instead, update the status of potential master bugs in the + crash DB whenever check_duplicate() is called. Note that this does not + affect Ubuntu itself, just the retracers in the data center. + - launchpad.py: Fix crash in close_duplicate() if master bug was already + marked as a duplicate of the examined bug. + - problem_report.py, load(): Fix missing last character if the last line + in a multi-line field is not terminated with a newline. + - launchpad.py: Fix test_marking_python_task_mangle() check to work with + current Launchpad. + - apport-retrace: If the user did not specify a --cache directory, create + a shared one instead of letting the two install_packages() calls create + their own. This ensures that the apt and dpkg status is up to date, and + avoids downloading the package indexes multiple times. (LP: #847951) + - apport-retrace: Give proper error mesage instead of AssertionError crash + if a report does not contain standard Apport format data. (LP: #843221) + - fileutils.py, get_new_reports(): Fix crash if report file disappears in + the middle of the operation. (LP: #640216) + - apport/ui.py, load_report(): Intercept another case of broken report + files. (LP: #445142) + - apport/report.py, standard_title(): Escape regular expression control + characters in custom exception names. (LP: #762998) + * data/package-hooks/source_ubiquity.py: Fix crash if + prepare_duplicate_signature() does not return anything. (LP: #843911) + * debian/control: Bump Standards-Version to 3.9.2 (no changes necessary). + + -- Martin Pitt Wed, 14 Sep 2011 08:29:03 +0200 + +apport (1.22.1-0ubuntu2) oneiric; urgency=low + + * data/general-hooks/ubuntu.py: include apport version in bug reports since + apport contains code for blocking bug reports and source package hooks + + -- Brian Murray Thu, 08 Sep 2011 20:09:57 +0200 + +apport (1.22.1-0ubuntu1) oneiric; urgency=low + + [ Martin Pitt ] + * New upstream release: + - dupdb-admin: Add "removeid" command. + - dupdb-admin: Use the in-memory CrashDB implementation for simple + operations like dump or changeid, which do not require an actual + backend. This makes the command work in checkouts without a + /etc/apport/crashdb.conf. + - dupdb-admin: Fix UnicodeEncodeError crash. + - launchpad.py: Fix crash if a crash report does not have a DistroRelease. + - Set the default "Apport" title for choice dialogs instead of the default + apport-gtk title. Thanks Robert Roth. (LP: #608222) + - apport-gtk: Update markup_escape_text() call to current glib. + (LP: #829635) + * data/package-hooks/source_ubiquity.py: Only set a DuplicateSignature and + change the source package if we are reporting a package or program crash, + not for ProblemType == 'Bug'. + + [ Brian Murray ] + * data/general-hooks/ubuntu.py: check the device holding /, /var and /usr + partitions for I/O errors and if they exist make the bug unreportable + * data/package-hooks/source_ubiquity.py: Use attachment OemConfigLog to + determine whether or not to tag the bug oem-config not information in + syslog + + -- Martin Pitt Tue, 06 Sep 2011 08:16:46 +0200 + +apport (1.22-0ubuntu3) oneiric; urgency=low + + * data/package-hooks/source_ubiquity.py: Fix crash on undefined 'version'. + (LP: #837048) + + -- Martin Pitt Tue, 30 Aug 2011 06:35:43 +0200 + +apport (1.22-0ubuntu2) oneiric; urgency=low + + * data/package-hooks/source_ubiquity.py: create a duplicate signature for + ubiquity bug reports using data in syslog + + -- Brian Murray Fri, 26 Aug 2011 13:17:38 -0400 + +apport (1.22-0ubuntu1) oneiric; urgency=low + + [ Brian Murray ] + * data/general-hooks/ubuntu.py: generate a DuplicateSignature tag for + distribution upgrades too. + + [ Martin Pitt ] + * New upstream release: + - Completely rework apport-retrace to use gdb's "debug-file-directory" and + "solib-absolute-prefix" settings and only unpack the necessary packages + in a temporary directory. This makes it possible to use it in a running + system without actually touching installed packages, does not need any + root privileges, and stops the requirement of using chroots with + fakechroot and fakeroot. This is a lot easier to maintain and use, and a + lot faster, too. As a consequence, drop the chroot module, and update + crash-digger accordingly. See "man apport-retrace" for the new usage. + It is now also easier to port to other packaging backends, as a lot of + the common logic moved out of the packaging API; + packaging.install_retracing_packages() got dropped in favor of the + simpler packaging.install_packages(). (LP: #832740) + - launchpad.py: When searchTasks() times out, exit with 99 as this is a + transient error. + - crash-digger: Intercept OverflowError from downloaded compressed + attachments. + - crash-digger: Show how many bugs are left in the pool with each new + retrace. + * Drop debian/local/apport-chroot and manpage, and ubuntu-fat-chroot. These + are obsolete now with the new apport-retrace. + * Drop debian/local/setup-apport-retracer: Most of it is obsolete now, + setting up a retracer merely needs an lp:apport checkout and creating an + apt sources file, we don't need a script for that any more. + * data/general-hooks/ubuntu.py: Fix invalid "continue" statement in + DuplicateSignature code. (LP: #828037) + + -- Martin Pitt Thu, 25 Aug 2011 16:31:37 +0200 + +apport (1.21.3-0ubuntu4) oneiric; urgency=low + + * data/package-hooks/source_ubiquity.py: remove use of continue when not in + a loop (LP: #828037) + + -- Brian Murray Wed, 17 Aug 2011 07:34:21 -0700 + +apport (1.21.3-0ubuntu3) oneiric; urgency=low + + * Fix crash in GLib.markup_escape_text() call. Patch cherrypicked from + trunk. (LP: #828010) + + -- Martin Pitt Wed, 17 Aug 2011 15:52:22 +0200 + +apport (1.21.3-0ubuntu2) oneiric; urgency=low + + * data/package-hooks/source_ubiquity.py: + - attach the contents of syslog in the case where it is readable by the + user (LP: #824799) + - prevent reporting of bugs due to I/O error with installation media + + -- Brian Murray Wed, 17 Aug 2011 14:43:21 +0200 + +apport (1.21.3-0ubuntu1) oneiric; urgency=low + + * New upstream bug fix release. Changes since our previous snapshot: + - Add apport.packaging.get_library_paths() interface and implement it for + backends/packaging-apt-dpkg.py using dpkg multiarch directories. Use it + in chroot.py. This unbreaks apport-chroot for oneiric. + - hookutils.py: Don't attach empty values. Thanks Bryce Harrington. + (LP: #813798) + - apport-gtk: Correctly pass message dialog type. + - apport-gtk: Fix GLib and GObject imports to be compatible with the future + pygobject 3.0. + - hookutils.py, attach_alsa(): Get a list of outputs/inputs that PulseAudio + knows about, which also shows the currently selected output/input, as well + as volumes. This should help with "no sound" bug troubleshooting. Thanks + Luke Yelavich. + * data/general-hooks/ubuntu.py: Fix crash if report doesn't have a Package + field (caught by test suite). + * data/general-hooks/ubuntu.py: Fix crash if report doesn't have a + DpkgTerminalLog field (caught by test suite). + + -- Martin Pitt Wed, 17 Aug 2011 08:42:18 +0200 + +apport (1.21.2-0ubuntu14) oneiric; urgency=low + + * data/general-hooks/ubuntu.py: resolve issue with the contents of + DuplicateSignature being truncated + + -- Brian Murray Sat, 13 Aug 2011 11:40:07 -0700 + +apport (1.21.2-0ubuntu13) oneiric; urgency=low + + * data/general-hooks/ubuntu.py: do not report package installation failures + where the conflicting package is not a genuine Ubuntu package + + -- Brian Murray Thu, 11 Aug 2011 12:40:11 -0700 + +apport (1.21.2-0ubuntu12) oneiric; urgency=low + + * Merge change from trunk: + - apport/hookutils.py: properly detect as non-root when auditd is being + used, use egrep as we're using an extended regex. + + -- Marc Deslauriers Wed, 10 Aug 2011 13:42:27 -0400 + +apport (1.21.2-0ubuntu11) oneiric; urgency=low + + * data/general-hooks/ubuntu.py: + - create a duplicate signature for package installation failures + - tag install failures due to a package conflict 'package-conflict' + (LP: #368435) + + -- Brian Murray Wed, 10 Aug 2011 09:02:04 -0700 + +apport (1.21.2-0ubuntu10) oneiric; urgency=low + + * data/package-hooks/source_debian-installer.py: + - collect installation log files (LP: #820582) + * data/package-hooks/source_ubiquity.py: + - tag bug reports using the version of ubiquity and oem-config if + applicable + + -- Brian Murray Thu, 04 Aug 2011 11:48:25 -0700 + +apport (1.21.2-0ubuntu9) oneiric; urgency=low + + * data/package-hooks/source_linux.py: + - kernel driver tag needs a space before it + - add grub-pc to related package version if an apport-package bug + + -- Brian Murray Mon, 25 Jul 2011 12:36:54 -0700 + +apport (1.21.2-0ubuntu8) oneiric; urgency=low + + * data/package-hooks/source_linux.py: + - ensure Oops with RIP get tagged with the kernel-driver + + -- Brian Murray Fri, 22 Jul 2011 09:34:46 -0700 + +apport (1.21.2-0ubuntu7) oneiric; urgency=low + + [ Martin Pitt ] + * data/general-hooks/ubuntu.py: Fix calling of add_info() in the __main__ + test code. + + [ Brian Murray ] + * data/package-hooks/source_ubiquity.py: + - collect all logs using root_command_outputs (LP: #812738) + * apport/hookutils.py: + - check to see if the package has any upstart override files + * data/general-hooks/ubuntu.py: + - when reporting a problem use the upstart override check (LP: #803977) + + -- Martin Pitt Fri, 22 Jul 2011 16:51:22 +0200 + +apport (1.21.2-0ubuntu6) oneiric; urgency=low + + * data/general-hooks/ubuntu.py: + - In addition to DpkgTerminalLog also check VarLogDistupgradeApttermllog + for package installation failure messages + - Also move postrm.d/zz-update-grub errors to grub2 + * apport/hookutils.py: + - raise a yes no dialog in the event a conffile has been modified + (LP: #811203) + + -- Brian Murray Thu, 21 Jul 2011 06:36:04 +0200 + +apport (1.21.2-0ubuntu5) oneiric; urgency=low + + * data/general-hooks/ubuntu.py: + - Check DpkgTerminalLog for more cases that indicate the bug report should + be filed about grub2 + * data/package-hooks/source_linux.py: + - kerneloops was a transitional package we want the version of + kerneloops-daemon + + -- Brian Murray Tue, 19 Jul 2011 07:20:07 +0200 + +apport (1.21.2-0ubuntu4) oneiric; urgency=low + + [ Brian Murray ] + * data/package-hooks/source_linux.py: + - tag kerneloops reports with the driver the Oops occurred in + - include kerneloops package version in kerneloops reports + + [ Martin Pitt ] + * Merge changes from trunk: + - gtk/apport-gtk.desktop.in: Also show in Unity. (LP: #803519) + - apport-unpack: Fix crash on file errors. + - hookutils.py: Add attach_mac_events() for reporting logs of MAC systems. + Looks for AppArmor messages for now. Thanks Marc Deslauriers! + + -- Martin Pitt Thu, 14 Jul 2011 18:13:52 +0200 + +apport (1.21.2-0ubuntu3) oneiric; urgency=low + + * data/general-hooks/ubuntu.py: add in casper package version to bugs + reported from Live Media + + -- Brian Murray Thu, 14 Jul 2011 06:30:51 +0200 + +apport (1.21.2-0ubuntu2) oneiric; urgency=low + + * data/package-hooks/source_ubiquity.py: + - Check syslog for squashfs errors and do not report + - Ask before adding installer debug log file (LP: #773766) + + -- Brian Murray Thu, 07 Jul 2011 13:40:17 -0700 + +apport (1.21.2-0ubuntu1) oneiric; urgency=low + + * New upstream bug fix release. Changes since our trunk snapshot: + - generic hook: Don't report package installation failures due to + segfaulting maintainer scripts. We want the actual crash report only. + Thanks Brian Murray. + - hookutils.py, attach_wifi(): Also include wpasupplicant logs. Thanks + Mathieu Trudel-Lapierre! + - report.py: Fix bug patterns to correctly match against compressed report + fields. + * gtk/apport-gtk.desktop.in: Also show in Unity. Cherrypicked from trunk. + (LP: #803519) + * etc/default/apport: Turn Apport back on by default for Alpha 2. + + -- Martin Pitt Fri, 01 Jul 2011 16:32:38 +0100 + +apport (1.21.1-0ubuntu2) oneiric; urgency=low + + * Merge from trunk: + - test/run: Check $PYTHON for using a different Python interpreter (such + as "python3") for the tests. + - backends/packaging-apt-dpkg.py: Fix crash introduced in 1.21.1's + multiarch fixes. + + -- Martin Pitt Wed, 22 Jun 2011 10:42:15 +0200 + +apport (1.21.1-0ubuntu1) oneiric; urgency=low + + * New upstream release: + - data/general-hooks/generic.py: Also check for low space on /var. Thanks + Brian Murray. + - hookutils.py, attach_file() and attach_file_if_exists(): Add a new + "overwrite" flag option. If not given, now default to overwriting an + existing key, as this is usually what you need when attaching files + (instead of attaching it several times with '_' appended to the keys). + You can get the old behaviour by setting overwrite=False. + - When showing the size of the full report, take the compressed size of + binary values instead of their uncompressed size, as the crash db upload + will use the compressed values. + - backends/packaging-apt-dpkg.py: Fix for current dpkg with multiarch + support. + - test/run: Fix the test suite to run against the system installed + libraries with current Python versions (2.6, 2.7) where __file__ does + not work any more with imports. + + -- Martin Pitt Mon, 20 Jun 2011 11:53:30 +0200 + +apport (1.21-0ubuntu1) oneiric; urgency=low + + * New upstream release. Changes since our previous trunk merge: + - Supply --desktop option to kdesudo to improve the description which + program is requesting administrative privileges. + - apport-checkreports: Exit with status 2 if there are new reports, but + apport is disabled. This helps crash notification GUIs to not display new + crash reports in that case. Thanks to Michael Vogt for the original patch. + - Add data/is-enabled: Shell script to check if apport is enabled. + Non-Python programs (which can't use apport.packaging.enabled() ) can + call this instead of having to parse /etc/default/apport themselves, and + just check the exit code. Inspired by original patch from Michael Vogt. + + -- Martin Pitt Wed, 08 Jun 2011 11:19:01 +0200 + +apport (1.20.1-0ubuntu6) oneiric; urgency=low + + * debian/control: Update Vcs-Bzr: to oneiric branch. + * bin/apport-bug: Finally drop the long-deprecated -p/-P options. + * gtk/apport-gtk: Stop forcing GTK 2, we move to GTK 3 now. Update GIR + dependency accordingly. + * man/apport-bug.1: Revert change to explain $APPORT_STAGING, this has been + removed long ago. + * Convert packaging from cdbs+python-central to dh7+dh_python2. + + -- Martin Pitt Tue, 17 May 2011 15:34:10 +0200 + +apport (1.20.1-0ubuntu5) natty; urgency=low + + [ Kees Cook ] + * debian/rules: really ignore "start" result at install (LP: #767829). + + [ Brian Murray ] + * Only prepend linux bug titles with [STAGING] if a title exists + (LP: #767864). + + -- Kees Cook Wed, 20 Apr 2011 16:27:06 -0700 + +apport (1.20.1-0ubuntu4) natty; urgency=low + + * Ignore return code on startup (LP: #767498) + + -- Stéphane Graber Wed, 20 Apr 2011 16:55:58 -0400 + +apport (1.20.1-0ubuntu3) natty; urgency=low + + * Merge from trunk: + - Use kde-open instead of kfmclient to open URLs under KDE. Thanks Philip + Muškovac. (LP: #765808) + * etc/default/apport: Disable by default for the final release. + + -- Martin Pitt Wed, 20 Apr 2011 18:57:27 +0200 + +apport (1.20.1-0ubuntu2) natty; urgency=low + + [ Brad Figg ] + * The kernel team has decided that asking the user for a bunch of + information which they may not be able to answer is the wrong thing to do. + Therefore, all the propmpting of the user for said information has been + removed. Also removed is the tagging of "needs-upstream-testing". + + [ Martin Pitt ] + * Merge bug fixes from trunk: + - apport-gtk: HTML-escape text for dialogs with URLs. (LP: #750870) + - dump_acpi_tables.py: Check to see if acpi/tables dir is mounted first. + Thanks Brian Murray. (LP: #729622) + - man/apport-cli.1: Document recently added -w/--window option. Thanks + Abhinav Upadhyay. (LP: #765600) + + -- Martin Pitt Tue, 19 Apr 2011 11:04:57 +0200 + +apport (1.20.1-0ubuntu1) natty; urgency=low + + * New upstream bug fix release: + - Add bash completion support for new -w/--window option that was + introduced in 1.20. Thanks Philip Muškovac. + - apport-unpack: Fix crash if target directory already exists. + - Fix crash if UnreportableReason is a non-ASCII string. (LP: #738632) + - Fix crash if application from desktop name is a non-ASCII string. + (LP: #737799) + - unkillable_shutdown: Fix rare crash if ExecutablePath does not exist + (any more). (LP: #537904) + - kernel_crashdump: Fix crash if the vmcore file disappeared underneath + us. (LP: #450295) + - unkillable_shutdown: Fix crash if the checked process terminated + underneath us. (LP: #540436) + - ui.py: Properly raise exceptions from the upload thread that happen at + its very end. (LP: #469943) + * data/package-hooks/source_ubiquity.py: Read root-only accessible log files + as root. (LP: #745455) + + -- Martin Pitt Thu, 31 Mar 2011 17:37:16 +0200 + +apport (1.20-0ubuntu1) natty; urgency=low + + * New upstream release. Changes since our previous snapshot: + - Add support for -w/--window option which will enable user to select a + window as a target for filing a problem report. Thanks Abhinav Upadhyay. + (LP: #357847) + - Disable the filtering on SIGABRT without assertion messages. Turns out + that developers want these crash reports after all. (LP: #729223) + - Add support for a "DuplicateSignature" report fields. This allows + package hooks to implement custom duplicate problem handling which + doesn't need to be hardcoded in Apport itself. Update the launchpad + backend to tag such bugs as "need-duplicate-check". + - hookutils.py Update WifiSyslog regex to correctly catch application log + messages in syslog. Thanks Mathieu Trudel-Lapierre. (LP: #732917) + - hookutils.py, attach_hardware(): Avoid error message if machine does not + have a PCI bus. Thanks Marcin Juszkiewicz. (LP: #608449) + - backends/packaging-apt-dpkg.py: Replace deprecated getChanges() call + with get_changes(). + - apport-gtk: Fix broken dialog heading if the name of the crashed program + contains an & or other markup specific characters. + - apport-gtk: Don't crash if GTK cannot be initialized. This usually + happens without a $DISPLAY or when the session is being shut down. Just + print an error message. If there are pending crashes, they will be shown + again the next time a session starts. (LP: #730569) + * debian/local/apport-chroot: In retracing mode, fix the passed --auth and + --duplicate-db arguments to be paths within the fakechroot. + * debian/local/apport-chroot: Apply the same absolute path fix to retracing + mode that we already applied to login mode in 1.19-0ubuntu1. + + -- Martin Pitt Fri, 18 Mar 2011 16:39:07 +0100 + +apport (1.19-0ubuntu3) natty; urgency=low + + * Merge fixes from trunk: + - apport-retrace: Intercept SystemErrors from ill-formed gzip attachments + as well. + - Fix crash if crash database configuration does not specify a + bug_pattern_url. Just assume None. (LP: #731526) + - If a custom crash database does not specify a bug_pattern_url, fall back + to using the default database's. (LP: #731526) + + -- Martin Pitt Wed, 09 Mar 2011 19:21:16 +0100 + +apport (1.19-0ubuntu2) natty; urgency=low + + * gtk/apport-gtk: Update require_version() call to current pygobject API. + Bump python-gobject dependency accordingly. + * Merge from trunk: + - report.py, add_hooks_info(): Properly report TypeErrors from hooks. + + -- Martin Pitt Thu, 03 Mar 2011 17:20:41 +0100 + +apport (1.19-0ubuntu1) natty; urgency=low + + [ Martin Pitt ] + * New upstream release: + - apt backend: Do not generate a warning if the opportunistically added -dbg + package does not exist. + - apt backend: Only add -dbg in --no-pkg mode, as there will be conflicts in + normal package mode. + - apt backend: Call tar with target cwd instead of using -C; the latter causes + an extra openat() call which breaks with current fakechroot. + - launchpad.py: Fix retracer crash if DistroRelease field does not exist. + - Convert deprecated failIf()/assert_() TestCase method calls to + assertFalse()/assertTrue(). + - In apport-bug, if the user specifies a PID referring to a kernel thread, + do the right thing and file the bug against the kernel + - In hookutils.attach_dmesg, skip over an initial truncated message if one + is present (this happens when the ring buffer overflows) + - Change bug patterns to just use one central file instead of per-package + files. This allows bug patterns to be written which are not package + specific, and is easier to maintain as well. IMPORTANT: This changed the + format of crashdb.conf: bug_pattern_base is now obsolete, and the new + attribute bug_pattern_url now points to the full URL/path of the patterns + file. Thanks to Matt Zimmerman! + * debian/local/setup-apport-retracer: Drop local installation of packages, + we now just check that they are installed in the system. + * debian/local/apport-chroot: Convert --auth argument to absolute path, as + fakechroot needs that. + + [ Steve Langasek ] + * data/general-hooks/ubuntu.py: don't collect bug reports on missing + menu.lst - this is a user error that they need to fix up on their side. + (LP: #668888) + + [ Matt Zimmerman ] + * data/general-hooks/ubuntu.py: Add UpgradeStatus field to show if the + system was upgraded from a previous release (and when) + * debian/apport.install: actually install the java_uncaught_exception script + + -- Martin Pitt Mon, 28 Feb 2011 12:16:22 +0100 + +apport (1.18-0ubuntu2) natty; urgency=low + + * Merge from trunk: + - Update stack unwind patterns for current glib (slightly changed function + names), and also ignore a preceding '*'. (LP: #716251) + - Fix crash_signature() to fail if there is an empty or too short + StacktraceTop. + + -- Martin Pitt Sun, 20 Feb 2011 20:31:02 +0100 + +apport (1.18-0ubuntu1) natty; urgency=low + + [ Martin Pitt ] + * New upstream release: + - Ensure that symptom scripts define a run() function, and don't show them + if not. + - Do not show symptom scripts which start with an underscore. These can be + used for private libraries for the actual symptom scripts. + - Update bash completion. Thanks Philip Muškovac. + - etc/default/apport: Remove obsolete "maxsize" setting. (LP: #719564) + - Remove explicit handling of KDE *.ui files in setup.py, as + python-distutils-extra 2.24 fixes this. Bump version check. + - hookutils.py: Add attach_root_command_outputs() to run several commands + at once. This avoids asking for the password several times. + (LP: #716595) + * debian/apport.postinst: Add missing debhelper token. + * debian/rules: Drop dump_acpi_tables.py chmod workaround, it's upstream now + and has the proper permissions. + * Add etc/apport/blacklist.d/apport and drop the creation of it in + /debian/rules. This is easier to maintain and more obvious. Also move + README.blacklist from python-apport to apport, it fits better there. + * etc/apport/blacklist.d/apport: Add the binaries of nspluginwrapper, as we + can't do anything about them anyway. (LP: #717468) + + [ Brian Murray ] + * data/package-hooks/source_linux.py: Properly set regression-release tag if + the reporter chooses "I do not know". + + -- Martin Pitt Wed, 16 Feb 2011 14:29:36 +0100 + +apport (1.17.2-0ubuntu2) natty; urgency=low + + * Merge from trunk: + - Ensure that symptom scripts define a run() function, and don't show them + if not. + - Do not show symptom scripts which start with an underscore. These can be + used for private libraries for the actual symptom scripts. + + -- Martin Pitt Mon, 07 Feb 2011 12:23:57 +0100 + +apport (1.17.2-0ubuntu1) natty; urgency=low + + * New upstream bug fix release: + - Be more Python 3 compatible (not fully working with Python 3 yet, + though). + - apt/dpkg backend: Drop support for pre-0.7.9 python-apt API. + - Add --tag option to add extra tags to reports. (LP: #572504) + - hookutils.py, attach_dmesg(): Do not overwrite already existing dmesg. + - hookutils.py: Be more robust against file permission errors. + (LP: #444678) + - ui.py: Do not show all the options in --help when invoked as *-bug. + (LP: #665953) + - launchpad.py: Adapt test cases to current standard_title() behaviour. + * debian/control: Bump python-apt dependency to >= 0.7.9 to ensure that we + have the current API. Trunk dropped support for the old API. + * data/general-hooks/ubuntu.py: Ignore obsolete packages when filing bugs + against update-manager. (LP: #397519) + * data/general-hooks/ubuntu.py: Do not file a package install failure if + DpkgTerminalLog doesn't have any data. (LP: #695887) + * Add debian/apport.postinst: Create /var/crash. This directory is required + for package failures even if apport is disabled and thus the upstart job + does not run. (LP: #683367) + + -- Martin Pitt Fri, 04 Feb 2011 15:46:40 +0100 + +apport (1.17.1-0ubuntu3) natty; urgency=low + + * data/general-hooks/ubuntu.py: Add some __main__ code for easy testing, + which will update a .crash file with that hook's data. + * data/general-hooks/ubuntu.py: Trim DpkgTerminaLog to the most recent + install session; not only is this much easier to read, but it also avoids + confusing the tests further down which check for particular strings in the + log. (LP: #580419) + + -- Martin Pitt Wed, 26 Jan 2011 11:44:00 +0100 + +apport (1.17.1-0ubuntu2) natty; urgency=low + + * Merge from trunk: + - hookutils.py, attach_dmesg(): Do not overwrite already existing dmesg. + * etc/default/apport: Enable Apport by default for Alpha-2. + + -- Martin Pitt Tue, 25 Jan 2011 07:28:48 +0100 + +apport (1.17.1-0ubuntu1) natty; urgency=low + + * New upstream release: + - Make the GTK frontend work with GTK 2.0 as well, and drop "3.0" + requirement. + * gtk/apport-gtk: Force GTK 2 for now, as we do not currently have a real + GTK 3 theme, and thus with GTK 3 the application looks very ugly. + * debian/control: Depend on gir1.2-gtk-2.0 instead of -3.0. + + -- Martin Pitt Mon, 10 Jan 2011 22:26:10 -0600 + +apport (1.17-0ubuntu2) natty; urgency=low + + [ Brian Murray ] + * data/package-hooks/source_linux.py: Prevent regression-release bugs from + being tagged regression-updates. (LP: #692344). Additionally, reorder the + regression tags in likelyhood of greatest usage and clarify that + 'regression-release' applies to the dev release and a stable release but + not an updated package in the stable release. + + -- Martin Pitt Wed, 05 Jan 2011 09:47:38 +0100 + +apport (1.17-0ubuntu1) natty; urgency=low + + * New upstream release: + - Better standard bug titles for Python crashes. Thanks Matt Zimmerman! + (LP: #681574) + - Add handler for uncaught Java exceptions. There is no integration for + automatically intercepting all Java crashes yet, see java/README. + Thanks Matt Zimmerman! (LP: #548877) + - GTK frontend: Require GTK 3.0. + - launchpad.py: Default to "production" instance, not "edge", since edge + is obsolete now. + - hookutils.py, attach_alsa(): Fix crash if /proc/asound/cards does not + exist. (LP: #626215) + - ui.py, format_filesize(): Fix to work with stricter locale.format() in + Python 2.7. (LP: #688535). While we are at it, also change it to use + base-10 units. + - hookutils.py, package_versions(): Always include all requested package + names even if they're unknown to us. Thanks Matt Zimmerman! + (LP: #695188) + - launchpad.py: When updating a bug, also add new tags. Thanks Brian + Murray! + * debian/apport.install: Install Java crash handler in + /usr/share/apport/apport.jar. + * debian/control: Add Java build dependency so that the Java crash handler + will be built. + + -- Martin Pitt Fri, 31 Dec 2010 16:15:06 +0100 + +apport (1.16-0ubuntu5) natty; urgency=low + + * data/general-hooks/ubuntu.py: Add tag "running-unity" if Unity is running. + + -- Martin Pitt Sat, 18 Dec 2010 20:50:20 +0100 + +apport (1.16-0ubuntu4) natty; urgency=low + + * Restore the python2.7 fix which was not in the vcs and dropped. + + -- Sebastien Bacher Thu, 16 Dec 2010 23:40:12 +0100 + +apport (1.16-0ubuntu3) natty; urgency=low + + * debian/control: + - Update Depends for gir abi change + + -- Michael Terry Thu, 16 Dec 2010 13:49:57 -0500 + +apport (1.16-0ubuntu2) natty; urgency=low + + * Cherrypick from trunk: + - ui.py, format_filesize(): Fix to work with stricter locale.format() in + Python 2.7. (LP: #688535). While we are at it, also change it to use + base-10 units. + * debian/rules: Fix python version check to also work with 2.7. + + -- Martin Pitt Tue, 14 Dec 2010 12:23:31 +0100 + +apport (1.16-0ubuntu1) natty; urgency=low + + * New upstream release: + - Port GTK frontend from pygtk2 to GTK+3.0 and gobject-introspection. + - Fix symptoms again. Version 1.15 broke the default symptom directory. + - Fix memory test case to work with current Python versions, where the + SQLite integrity check throws a different exception. + * debian/control: Replace python-gtk2 dependency with python-gobject and + gir1.0-gtk-3.0. + * debian/control: Drop obsolete Conflicts/Replaces. + * debian/control: Consistently wrap dependencies. + + -- Martin Pitt Fri, 19 Nov 2010 11:43:08 +0100 + +apport (1.15-0ubuntu1) natty; urgency=low + + [ Martin Pitt ] + * New upstream release. Changes since to our previous trunk snapshot: + - Order symptom descriptions alphabetically. Thanks to Javier Collado. + - Check $APPORT_SYMPTOMS_DIR environment variable for overriding the + system default path. Thanks to Javier Collado. + - testsuite: Check that crashdb.conf can have dynamic code to determine DB + names and options. + - ui.py test suite: Rewrite _gen_test_crash() to have the test process + core dump itself, instead of using gdb to do it. The latter fails in + ptrace restricted environments, such as Ubuntu 10.10. + - launchpad.py: Use launchpadlib to file a bug instead of screen scraping. + The latter was completely broken with current Launchpad, so this makes + the test suite actually work again. Thanks to Diogo Matsubara! + - launchpad.py: Change $APPORT_STAGING to $APPORT_LAUNCHPAD_INSTANCE, so + that you can now specify "staging", "edge", or "dev" (for a local + http://launchpad.dev installation). Thanks to Diogo Matsubara! + - backends/packaging-apt-dpkg.py: Fix crash on empty lines in ProcMaps + attachment. + - doc/symptoms.txt: Fix typo, thanks Philip Muskovac. (LP: #590521) + - apport/hookutils.py: rename ProcCmdLine to ProcKernelCmdLine to not wipe + wipe out /proc/$pid/cmdline information. (LP: #657091) + - apport/hookutils.py: attach_file() will not overwrite existing report + keys, instead appending "_" until the key is unique. + - Fix --save option to recognise ~, thanks Philip Muškovac. (LP: #657278) + - Remove escalation_subscription from Ubuntu bug DB definition, turned out + to not be useful; thanks Brian Murray. + - launchpad.py: Fix APPORT_LAUNCHPAD_INSTANCE values with a https:// + prefix. + - apt backend: Opportunistically try to install a -dbg package in addition + to -dbgsym, to increase the chance that at least one of it exists. + Thanks Daniel J Blueman! + * debian/control: Switch Vcs-Bzr: to natty branch. + + [ Brian Murray ] + * data/package-hooks/source_linux.py: Drop regression-potential tag. We are + moving away from using regression-potential as a tag in the management of + regression bug reports. Instead we will tag bugs regression-release and + then create series, release, tasks for the release affected if the bug is + in fact a regression. + + -- Martin Pitt Fri, 12 Nov 2010 14:59:01 +0100 + +apport (1.14.1-0ubuntu8) maverick; urgency=low + + * debian/local/ubuntu-fat-chroot: Divert gio-querymodules and + gdk-pixbuf-query-loaders, since they keep breaking the chroots. + * etc/default/apport: Disable Apport for final Maverick release. + + -- Martin Pitt Tue, 28 Sep 2010 09:31:59 +0200 + +apport (1.14.1-0ubuntu7) maverick; urgency=low + + * In kde/apport-kde use correct translation catalogue, LP: #633483 + + -- Jonathan Riddell Wed, 08 Sep 2010 20:53:13 +0100 + +apport (1.14.1-0ubuntu6) maverick; urgency=low + + * backends/packaging-apt-dpkg.py: fix handling of + /etc/apport/native-origins.d to actually work. LP: #627777. + + -- Steve Langasek Thu, 02 Sep 2010 22:28:48 +0000 + +apport (1.14.1-0ubuntu5) maverick; urgency=low + + * debian/control: Update Vcs-Bzr: to point to maverick branch. + * data/package-hooks/source_linux.py: Update to new-style kernel tags. + Patch by Brad Figg. + * debian/control: Bump Standards-Version to 3.9.1, no changes necessary. + * debian/compat: Bump to 7, since we are build depending on debhelper > 7.3 + anyway. + + -- Martin Pitt Wed, 25 Aug 2010 13:02:46 +0200 + +apport (1.14.1-0ubuntu4) maverick; urgency=low + + * debian/local/ubuntu-fat-chroot: Drop firefox and thunderbird, we will use + upstream crash reporting for those now. + * debian/rules: Make dump_acpi_tables.py executable. This is a workaround as + long as the script comes through the package diff.gz. + + -- Martin Pitt Wed, 21 Jul 2010 08:43:32 +0200 + +apport (1.14.1-0ubuntu3) maverick; urgency=low + + * Merge from trunk: + - Add dump_acpi_tables.py script. This can be called by package hooks + which need ACPI table information (in particular, kernel bug reports). + Thanks to Brad Figg for the script! + - Fix test suite to work under ptrace restricted kernel. + * data/package-hooks/source_linux.py: Call dump_acpi_tables.py and save + output into "AcpiTables" field. + + -- Martin Pitt Tue, 13 Jul 2010 08:14:10 +0200 + +apport (1.14.1-0ubuntu2) maverick; urgency=low + + * etc/apport/crashdb.conf: Add a new database "canonical-oem" which + checks for an Ubuntu Distribution Channel Descriptor (in + /var/lib/ubuntu_dist_channel), and parses out the OEM project name from + that. Now that we modify the file anyway, remove the Fedora stanza, which + is not relevant for Ubuntu and not working due to a nonexisting Bugzilla + backend. + * data/general-hooks/ubuntu.py: Report bug against the OEM project instead + of Ubuntu if we have a DCD and an OEM specific package version. + * etc/default/apport: Re-enable Apport by default for Maverick. + + -- Martin Pitt Mon, 05 Jul 2010 10:53:10 +0200 + +apport (1.14.1-0ubuntu1) maverick; urgency=low + + * New upstream bug fix release: + - hookutils.py, attach_drm_info(): Sanitize connector names. Thanks Chris + Halse Rogers. (LP: #597558) + - bash completion: Complete all path names, apport-bug can be invoked with + a path to a program. Thanks Philip Muskovac. + + -- Martin Pitt Thu, 24 Jun 2010 15:37:19 +0200 + +apport (1.14-0ubuntu1) maverick; urgency=low + + * New upstream release: + - hookutils.py: Add new method attach_drm_info() to read and format + /sys/class/drm/*. (desktop-maverick-xorg-gpu-freeze-reports) + - packaging-apt-dpkg.py: Fix deprecated python-apt variables, thanks David + Stansby. (LP: #591695) + - launchpad.py: Fix crash on attachments which are named *.gz, but + uncompressed. (LP: #574360) + - hookutils.py, attach_gconf(): Fix defaults parsing for boolean keys. + (LP: #583109) + * debian/control: Bump p-distutils-extra build-dependency to 2.19, to ensure + that we get a complete translation template. (LP: #533565) + + -- Martin Pitt Wed, 16 Jun 2010 15:50:55 +0200 + +apport (1.13.4-0ubuntu1) maverick; urgency=low + + * New upstream bug fix release: + - bash completion: Fix error message if /usr/share/apport/symptoms does + not exist. Thanks Philip Muškovac! (LP: #562118) + - general-hooks/parse_segv.py: Report stack exhaustion more clearly and + correctly handle register dereferencing calls. + - Save/restore environment when calling hooks, in case they change the + locale, etc. (LP: #564422) + - hookutils.py, command_output(): Do not set $LC_MESSAGES for the calling + process/hook, just for the command to be called. + - ui.py: When displaying strings from system exceptions, decode them into + an unicode string, to avoid crashing the KDE UI. (LP: #567253) + - apport-retrace: Fix crash for retracing kernel vmcores, which do not + have an ExecutablePath. + - apport-bug manpage: Clarify when apport-collect may be used. Thanks + Brian Murray! (LP: #537273) + - generic hook: Check ProcMaps for unpackaged libraries, and ask the user + if he really wants to continue. If he does, tag the report as + "local-libs" and add a "LocalLibraries" field to the report with a list + of them. (LP: #545227) + * debian/control: Drop the now obsolete apport-qt transitional package. + * debian/control: We do not need python-dev, just python-all. + * Add debian/source/format: We keep 1.0, since 3.0 is a pain for + bzr-maintained packages. + + -- Martin Pitt Sat, 08 May 2010 09:00:26 +0200 + +apport (1.13.3-0ubuntu2) lucid; urgency=low + + * etc/default/apport: Disable Apport for the final release. + + -- Martin Pitt Mon, 19 Apr 2010 10:33:43 +0200 + +apport (1.13.3-0ubuntu1) lucid; urgency=low + + * New upstream bug fix release: + - data/general-hooks/parse_segv.py: suggest segv-in-kernel possibility. + - ui.py: When running as root, only show system crash reports, to avoid + restarting user programs as root. (LP: #445017) + + -- Martin Pitt Wed, 14 Apr 2010 14:42:28 +0200 + +apport (1.13.2-0ubuntu1) lucid; urgency=low + + [ Martin Pitt ] + * New upstream bug fix release: + - packaging-apt-dpkg.py, _install_debug_kernel(): Do not crash on an + outdated kernel, just return that it is outdated. (LP: #532923) + - launchpad.py test suite: Add "Referer" HTTP header, now required by + launchpad. + - launchpad.py: Fix crash if configuration does not have an + "escalated_tag" option. + - launchpad.py: Port to launchpadlib 1.0 API, thanks Michael Bienia for + the initial patch! (LP: #545009) + - gtk/apport-gtk-mime.desktop.in, kde/apport-kde-mime.desktop.in: Change + categories so that these do not ever appear in menu editors. + (LP: #449215) + - launchpad.py: Some LP bugs have broken attachments (this is a bug in + Launchpad itself). Ignore those instead of crashing. + - apport-gtk: Turn http:// and https:// links into clickable hyperlinks in + information and error dialogs. (LP: #516323) + - apport-retrace: Fix crash when trying to rebuild package info for + reports without an ExecutablePath. (LP: #436157) + - ui.py: Fix crash when package information cannot be determined due to + broken apt status. (LP: #362743) + - ui.py: Fix crash when /etc/apport/crashdb.conf is damaged; print an + appropriate error message instead. (LP: #528327) + - data/kernel_crashdump: Fix crash if log file disappeared underneath us. + (LP: #510327) + - data/apport: Fix IOError when apport is called with invalid number of + arguments, and stderr is not a valid fd. (LP: #467363) + - hookutils.py: Factor out the DMI collection code from attach_hardware() + into attach_dmi(), and call that in attach_alsa() as well. Thanks to + Brad Figg for the patch! (LP: #552091) + - apport/ui.py: Fix the help output if Apport is invoked under an + alternative name (like apport-collect). (LP: #539427) + * debian/local/apport-chroot: Fix crash if $APPORT_CRASHDB_CONF is not set. + (LP: #487700) + * debian/control: Bump python-launchpadlib dependency, to ensure that we + have a current version (LP: #407091), and the "1.0" protocol available. + * data/package-hooks/source_linux.py: Drop _() i18n, it's not available in + the hook and causes crashes. (LP: #538368) + + [ Leann Ogasawara ] + * data/package-hooks/source_linux.py: + - Clean up some of the wording in the information dialogs for the + interactive kernel hook. Also add an additional "I don't know" option when + asked how frequently an issue occurs. (LP: #534638) + - Autodetect if running an upstream kernel. (LP: #532932) + - Attempt to categorize issue. Then add tag based on category. + (LP: #534745) + + -- Martin Pitt Wed, 31 Mar 2010 16:32:39 +0200 + +apport (1.13.1-0ubuntu2) lucid; urgency=low + + * Merge bug fixes from trunk: + - problem_report.py, write_mime(): Add new optional argument + "priority_fields" for ordering report keys. Patch by Brian Murray, + thanks! + - launchpad.py: Put some interesting fields first in the report, with the + new priority_fields argument. Patch by Brian Murray, thanks! + - packaging-apt-dpkg.py, _install_debug_kernel(): Do not crash on an + outdated kernel, just return that it is outdated. + + -- Martin Pitt Sat, 27 Mar 2010 11:48:34 +0100 + +apport (1.13.1-0ubuntu1) lucid; urgency=low + + [ Martin Pitt ] + * New upstream bug fix release: + - Update parse-segv to handle gdb 7.1 output. + - Enhance test suite to work with gdb 7.1 as well, and catch future + outputs. + - UI: Add exception string to the "network error" dialog, to better tell + what the problem is. + - UI: Add back -p option to apport-collect/apport-update-bug (regression + from 1.13). (LP: #538944) + - launchpad.py: Add yet another workaround for LP#336866. (LP: #516381) + - launchpad.py, download(): Ignore attachments with invalid key names. + - Fix regression from 1.10 which made it impossible for a package hook to + set a third-party crash database for non-native packages. (LP: #517272) + - apport-cli: Create the 'details' string only if user wants to view + details, and do not show files larger than 1MB. Thanks Scott Moser! + (LP: #486122) + - packaging-apt-dpkg.py: Silence apt.Cache() spewage to stdout with newer + python-apt versions. (LP: #531518) + - unkillable_shutdown: Add list of running processes and blacklisted pids + to report. (LP: #537262) + - Sort the report by key in the details view. (LP: #519416) + + [ Evan Dandrea ] + * Move ubiquity's package-hook into apport, so that it can be used + from the installed system to grab the logs in /var/log/installer. + + -- Martin Pitt Sat, 20 Mar 2010 22:28:44 +0100 + +apport (1.13-0ubuntu3) lucid; urgency=low + + * Merge fixes from trunk: + - Update parse-segv to handle gdb 7.1 output. + - Enhance test suite to work with gdb 7.1 as well, and catch future outputs. + - unkillable_shutdown: Add list of running processes, blacklisted pids, + and "initctl list" to report. (LP: #537262) + - launchpad.py: Preserve the bug title written to the description by + apport as OriginalTitle for pattern matching. Thanks to Brian Murray! + (LP: #511310) + + -- Martin Pitt Sat, 13 Mar 2010 15:55:47 +0100 + +apport (1.13-0ubuntu2) lucid; urgency=low + + * data/general-hooks/parse_segv.py: backport portion of upstream commit 1724 + to handle new Disassembly output from gdb 7.1. + + -- Kees Cook Thu, 11 Mar 2010 10:58:39 -0800 + +apport (1.13-0ubuntu1) lucid; urgency=low + + * New upstream release: + - Add "unkillable_shutdown" script to collect information about processes + which are still running after sending SIGTERM to them. This can be + hooked into e. g. /etc/init.d/sendsigs on Debian/Ubuntu systems. + - apport_python_hook.py: Directly check /etc/default/apport instead of + querying packaging.enabled(), to avoid importing lots of modules for + non-packaged scripts. Thanks Stuart Colville! (LP: #528355) + - Fix SegV parser to notice walking off the stack during "call" or "ret" + (LP: #531672). + - Fix --help output for bug updating mode (invocation as apport-collect or + apport-update-bug). (LP: #504116) + - Fix bug escalation tagging, thanks to Brian Murray. + - Fix option processing when being invoked as apport-bug. Thanks to Daniel + Hahler for the patch! (LP: #532944) + * debian/apport.install: Install unkillable_shutdown. + + -- Martin Pitt Thu, 11 Mar 2010 08:42:05 +0100 + +apport (1.12.1-0ubuntu5) lucid; urgency=low + + * launchpad.py: Do not escalate a bug if its already been escalated and + dealt with. + + -- Brian Murray Fri, 05 Mar 2010 13:05:10 -0800 + +apport (1.12.1-0ubuntu4) lucid; urgency=low + + [ Leann Ogasawara ] + * data/package-hooks/source_linux.py: When reporting a kernel oops the + reporter is presented with a dialog asking if they also want to report the + oops to kerneloops.org. Unfortunately there is no information regarding + the oops at the time this dialog is presented. Provide the reporter a + summary of the oops in question so they can make an educated decision + about reporting it to kerneloops.org. (LP: #528175) + + -- Martin Pitt Thu, 04 Mar 2010 13:08:22 +0100 + +apport (1.12.1-0ubuntu3) lucid; urgency=low + + * data/general-hooks/parse_segv.py: add "call" and "ret" to list of insns + that check the stack pointer for VMA sanity (LP: #531672), backport of + upstream commit 1715. + + -- Kees Cook Wed, 03 Mar 2010 18:07:46 -0800 + +apport (1.12.1-0ubuntu2) lucid; urgency=low + + [ Leann Ogasawara ] + * data/package-hooks/source_linux.py: Prevent filing bugs against + linux-meta. Use the linux package instead. (LP: #526787) + + [ Scott Moser ] + * data/general-hooks/ubuntu.py: Update "is ec2 instance" logic for lucid uec + images. (LP: #525003) + + -- Martin Pitt Thu, 25 Feb 2010 19:06:39 +0100 + +apport (1.12.1-0ubuntu1) lucid; urgency=low + + [ Martin Pitt ] + * New upstream bug fix release: + - launchpad.py: Do not keep escalating bugs, just escalate at the 10th + duplicate. + - Improve error message if a symptom script did not determine a package + name. (LP: #503834) + - general-hooks/generic.py: Fix crash on libGL check with empty + StacktraceTop. + - Review and clean up usage of chmod(). This fixes a small race condition + in the Python exception hook where a local attacker could read the + information from another user's crash report. (LP: #516029) + - hookutils, package_versions(): Ignore "None" packages, for more robust + package hooks. (LP: #518295) + * debian/apport.install: Actually install the bash completion file. + (LP: #218933) + * Bump Standards-Version to 3.8.4 (no changes necessary). + + [ Leann Ogasawara ] + * source_linux.py: Tag kernel bugs which utilize a driver from staging. Also + provide the list of staging drivers in use. Prefix suspend/resume bug + titles with "[STAGING]" if a staging driver was being used. + (LP: #524174, #524167) + + -- Martin Pitt Mon, 22 Feb 2010 21:58:16 +0100 + +apport (1.12-0ubuntu5) lucid; urgency=low + + * Add a dh_apport debhelper program, and a sequence addon making it + possible to use 'dh --with apport'. + + -- Colin Watson Wed, 10 Feb 2010 18:12:30 +0100 + +apport (1.12-0ubuntu4) lucid; urgency=low + + [ Martin Pitt ] + * Add X-Ubuntu-Gettext-Domain: to desktop files, thanks Sebastien Bacher for + spotting this. + + [ Jonathan Thomas ] + * Make apport-kde recommend the new kubuntu-notification-helper package + rather than update-notifier-kde to prevent the latter, depreciated tool + from getting on the Live CD + + -- Martin Pitt Mon, 01 Feb 2010 07:40:11 -0800 + +apport (1.12-0ubuntu3) lucid; urgency=low + + * data/general-hooks/ubuntu.py: also attach byte compilation logs for + xemacs21 + + -- Reinhard Tartler Sun, 24 Jan 2010 19:51:04 +0100 + +apport (1.12-0ubuntu2) lucid; urgency=low + + * launchpad.py: Do not keep escalating bugs, just escalate at the 10th + duplicate. (Merged from trunk) + + -- Martin Pitt Fri, 22 Jan 2010 16:51:35 +0100 + +apport (1.12-0ubuntu1) lucid; urgency=low + + * New upstream release: + - launchpad.py: Add options 'escalation_subscription' and 'escalation_tag' + for handling bugs with more than 10 duplicates. + - crashdb.conf: For Ubuntu, escalate bugs with >= 10 duplicates to + "ubuntu-bugcontrol" and tag them with "bugpattern-needed". + (LP: #487900) + - general-hooks/generic.py: Filter out crashes on missing GLX + (LP: #327673) + - Add bash completion script. Thanks to Philip Muškovac. (LP: #218933) + - launchpad.py: Drop APPORT_FILES whitelist for download() and instead + just filter out file extensions that we know about (*.txt and *.gz). + (LP: #444975) + - launchpad.py: Do not put the Tags: field into the bug description, since + they are already proper tags. In download(), convert the real tags back + to the Tags: field. (LP: #505671) + - test/crash: Update expected core dump flags for changed rlimit behaviour + in Linux 2.6.32. + - launchpad.py: Fix marking of 'checked for duplicate' for bugs with + upstream tasks. + - launchpad.py, get_fixed_version(): Do not consider a bug as invalid just + because it has any invalid distro package task. + * debian/local/setup-apport-retracer: Switch to lucid. + * debian/local/setup-apport-retracer: Do not locally install python-apt and + friends, users can run apt-get install in DC dchroots now. + * debian/local/setup-apport-retracer: Don't add the retracer PPA for now, + everything we need is in lucid. + + -- Martin Pitt Wed, 20 Jan 2010 13:51:15 +0100 + +apport (1.11-0ubuntu5) lucid; urgency=low + + * ubuntu.py: Avoid errors when running on ramdiskless EC2 images, by only + attaching available EC2 information. Patch from Scott Moser (LP: #494615) + + -- Thierry Carrez Tue, 12 Jan 2010 12:19:32 +0100 + +apport (1.11-0ubuntu4) lucid; urgency=low + + * Merge from trunk: + - launchpad.py: Add options 'escalation_subscription' and 'escalation_tag' + for handling bugs with more than 10 duplicates. + - crashdb.conf: For Ubuntu, escalate bugs with >= 10 duplicates to + "ubuntu-bugcontrol" and tag them with "bugpattern-needed". (LP: #487900) + - launchpad.py: Drop APPORT_FILES whitelist for download() and instead + just filter out file extensions that we know about (*.txt and *.gz). + (LP: #444975) + + -- Martin Pitt Mon, 11 Jan 2010 23:53:10 +0100 + +apport (1.11-0ubuntu3) lucid; urgency=low + + * Attach emacs compilation logs in order to assist bug triaging. + LP: #413110 + + -- Reinhard Tartler Thu, 07 Jan 2010 22:14:45 +0100 + +apport (1.11-0ubuntu2) lucid; urgency=low + + * launchpad.py: Remove a snippet of redundant code. + * Merge bug fixes from trunk: + - launchpad.py: Drop APPORT_FILES whitelist for download() and instead + just filter out file extensions that we know about (*.txt and *.gz). + (LP: #444975) + * Enable Apport by default again. + + -- Martin Pitt Tue, 05 Jan 2010 18:30:19 +0100 + +apport (1.11-0ubuntu1) lucid; urgency=low + + * New upstream release: + - Add "--save" UI option to store the collected information into an + .apport file instead of sending it right away. The file can then later + be sent through apport-bug. Update manpages accordingly. + - Update all copyright and description headers and consistently format + them. + - Rename all TestCase classes to "_T", which makes it much easier to run + individual tests from the command line. + - Testsuite: Verify that report details are/are not shown. This uncovered + that details about package installation failures were not shown before + sending them, which is fixed now. + - test/hooks: Do not try to add hook information to kernel_crashdump test + case, since we do not have an UI here. This test case broke when the + system had an interactive package hook for the kernel. + - When reporting a bug from a saved .apport file, let the user + review/confirm the content before sending. + + -- Martin Pitt Wed, 23 Dec 2009 13:09:55 +0100 + +apport (1.10.1-0ubuntu1) lucid; urgency=low + + * New upstream release: + - Install apport-collect symlink. + - Update translations from Launchpad. + - Move all remaining option/argument parsing from apport-bug into ui.py. + This allows the user to add options to apport-bug/apport-collect, and + also avoids unwieldy dissection of options/arguments in shell. + * debian/apport.links: Do not create apport-collect symlink, now done by + upstream build system. Install that in debian/apport.install. + * debian/local/setup-apport-retracer: Set up lazr.restfulclient. + * debian/control: Bump python-distutils-extra build dependency to >= 2.14 to + ensure correct symlink handling. + + -- Martin Pitt Wed, 23 Dec 2009 00:54:37 +0100 + +apport (1.10-0ubuntu1) lucid; urgency=low + + * New upstream release: + - Add a mode for updating an existing problem report to ui.py + (-u/--update). This is similar to the Ubuntu specific "apport-collect" + tool, but implemented the right way now: In particular, this has access + to the UI and thus can use interactive hooks (LP: #385811) and show you + what is being sent for confirmation/cancelling (LP: #371827) + + - apport-bug: If invoked as "apport-collect" or "apport-update-bug" (i. e. + through a symlink), run apport in update mode (-u ). This + provides a convenient no-options command line program. Please note that + setup.py does not currently install such a symlink. Update the + apport-bug manpage accordingly. + + - launchpad.py: Use new login_with() to clean up code, and specify allowed + access levels (WRITE_PRIVATE is the only sensible one anyway). + (LP: #410205) + + - New hookutils functions: + + xsession_errors (match lines from ~/.xsession-errors) + + shared_libraries (determine which libraries a binary links with) + + links_with_shared_library (test if a binary links with a particular + library) + + - New CrashDatabase API: get_affected_packages(), can_update(), is_reporter() + + - Rename CrashDatabase.update() to update_traces(). + + - Add CrashDatabase.update() for adding all new fields of a report. This is + primarily useful for collecting local standard and package hook data for an + already existing bug report which was not filed through Apport. This checks + can_update()/is_reporter() if the user is eligible for updating that + particular bug. (LP: #485880) + + - Ignore SIGXCPU and SIGXFSZ; thanks to Kees Cook. (LP: #498074) + + - launchpad.py: Do not mark non-Ubuntu bugs as needs-retrace, since there is + no retracer right now. (LP: #489794) + + - packaging-apt-dpkg.py, install_retracing_packages(): Do not crash on + malformed Dependencies.txt lines. (LP: #441709) + + - use-local: Fix for new source tree location of "apport" binary. + + * Drop debian/local/apport-collect{,.1} and install symlinks for apport-bug + instead. + * data/general-hooks/ubuntu.py: Do not report "corrupted filesystem tarfile" + package errors. (LP: #320743) + * data/general-hooks/ubuntu.py: Report "package ... is already installed and + configured" errors against dpkg, not the package that failed. (LP: #467688) + + -- Martin Pitt Sat, 19 Dec 2009 16:48:48 +0100 + +apport (1.9.6-0ubuntu2) lucid; urgency=low + + * Bump python-launchpadlib dependency to ensure that we have login_with() + with credentials_file argument. + * debian/local/apport-collect: Add short infos to description if the calling + person is the bug reporter. (LP: #348948) + * debian/local/apport-collect: Intercept lazr.restfulclient.errors.HTTPError + as well, and also cover the login process. + * debian/local/apport-collect: Improve error messages. + * debian/local/ubuntu-fat-chroot: Disable update-alternatives, it causes too + much breakage with fakechroot. + + -- Martin Pitt Fri, 18 Dec 2009 13:09:26 +0100 + +apport (1.9.6-0ubuntu1) lucid; urgency=low + + [ Brian Murray ] + * debian/local/apport-collect: Strongly encourage collectors who are not + the bug reporter to file a new bug report. + + [ Marco Rodrigues ] + * debian/control: Fix lintian warnings. Move python-distutils-extra + to b-d-i and add misc:Depends to apport-qt. + + [ Martin Pitt ] + * New upstream version 1.9.5 and 1.9.6: + - apport-retrace: Fix crash if InterpreterPath/ExecutablePath do not + exist. + - hookutils.py, attach_alsa(): Attach /proc/cpuinfo too, for CPU flags. + - Fix crash if InterpreterPath does not exist any more at the time of + reporting. (LP: #428289) + - apport-gtk: Connect signals properly, to repair cancel/window close + buttons. (LP: #427814) + - Update German translations and fix "konnre" typo. (LP: #484119) + - launchpad.py: Ensure that text attachments on initial bug filing are + valid UTF-8. (LP: #453203) + - man/apport-retrace.1: Document -R option. + - Add pm-utils hook to record current operation, so that apportcheckresume + can check it. Before this was kept in Ubuntu's pm-utils package. + - general-hooks/generic.py: Check if using ecryptfs, and which directory. + (LP: #444656) + * data/general-hooks/ubuntu.py: Add distro release codename tag. + (LP: #404250) + * debian/local/apport-chroot: Fix last occurrence of "--no-dpkg" to be + "--no-pkg". (LP: #487056) + * debian/local/apport-collect: Use "apport-collect data" as comment for the + apport-collect attachments to enable bug mail filtering. Thanks to Bryce + Harrington for the suggestion. + + -- Martin Pitt Wed, 02 Dec 2009 00:01:06 +0100 + +apport (1.9.4-0ubuntu1) lucid; urgency=low + + [ Marco Rodrigues ] + * etc/default/apport: Replace the old init.d force_start command by + the Upstart one. + * debian/apport.upstart: If $force_start=1 is given then run the job. + * debian/local/apport-collect: Don't collect information if bug is a + duplicate. (LP: #471429) + + [ Martin Pitt ] + * New upstream bug fix release: + - Fix crash when ExecutablePath isn't part of a package. (LP: #424965) + - hookutils.py, attach_hardware(): Anonymize disk labels. Thanks to Marco + Rodrigues. (LP: #394411) + - hookutils.py, attach_wifi(): Anonymize encryption key (which appeared in + hex when being called as root). Thanks to Marco Rodrigues. (LP: #446299) + - launchpad.py: If unset, set bug task source package also for interpreter + crashes. + - apport-gtk: Give details window a minimize/maximize button, which were + missing in some window managers. Thanks to Marien Zwart. (LP: #447749) + - apport-kde: Properly terminate program after closing the last dialog. + (LP: #458662) + - hookutils.py, attach_alsa(): Attach /proc/asound/version. (LP: #467233) + - general-hooks/generic.py: Only collect ~/.xsession-errors bits when we + have an ExecutablePath linked to libgtk. + * debian/control: Update Vcs-Bzr: for lucid branch. + * data/package-hooks/source_linux.py: Add interactive questionaire, thanks + Leann Ogasawara! (LP: #444672) + + -- Martin Pitt Fri, 06 Nov 2009 14:06:52 +0100 + +apport (1.9.3-0ubuntu4) karmic; urgency=low + + * etc/default/apport: Disable Apport for final Karmic. + + -- Martin Pitt Thu, 22 Oct 2009 22:41:34 +0200 + +apport (1.9.3-0ubuntu3) karmic; urgency=low + + * apport/crash_db/launchpad.py: Increase the number of files available + for searching with bug patterns. + + -- Brian Murray Sun, 18 Oct 2009 12:38:38 +0200 + +apport (1.9.3-0ubuntu2) karmic; urgency=low + + * debian/local/apport-collect: Instantiate Launchpad crash database with + "distro = ubuntu", to satisfy an assertion introduced in the previous + release. (LP: #451838) + + -- Martin Pitt Thu, 15 Oct 2009 21:12:21 +0200 + +apport (1.9.3-0ubuntu1) karmic; urgency=low + + * New upstream bug fix release: + - hookutils.py: Fix error codes from "comm", thanks to Brian Murray. + (LP: #414194) + - general-hooks/generic.py: Catch xkbcomp error messages. (LP: #431807) + - launchpad.py: Assert that we have exactly one of "distro" or "project" + option. + - doc/crashdb-conf.txt: Improve documentation of crash database options. + - apport-gtk: Make Cancel/Send buttons focusable. Thanks to Marco + Rodrigues. (LP: #447780) + - Drop handling of the APPORT_REPORT_THIRDPARTY environment variable and + "thirdparty" configuration file option. This has never been documented, + and conceptually does not work. There is a proper mechanism for this in + place now, e. g. launchpad.py's "project" option. + * bin/apport-bug: Show deprecation warning for -p/-P. (LP: #431942) + + -- Martin Pitt Wed, 14 Oct 2009 23:28:24 +0200 + +apport (1.9.2-0ubuntu2) karmic; urgency=low + + [ Matt Zimmerman ] + * general-hooks/ubuntu.py: Include in Ubuntu bug reports the version number + of the installation media used to install the system, via + /var/log/installer/media-info (cf. #364649) + + [ Martin Pitt ] + * debian/local/apport-collect.1: Clarify that the launchpad.credentials + files needs to be removed in order to ask for privileges again. + * Merge bug fixes from trunk: + - general-hooks/generic.py: Catch xkbcomp error messages, too. (LP: #431807) + - apport-bug: Consider -h as "output help", too. (Marco Rodrigues) + + [ Brian Murray ] + * debian/local/apport-collect: + - Resolve bug with specifying package for adding information. + - Let collector know if bug was not reported by them. + - Clarify potential failure causes. + + -- Martin Pitt Thu, 08 Oct 2009 09:37:35 +0200 + +apport (1.9.2-0ubuntu1) karmic; urgency=low + + * New upstream bug fix release: + - apport-cli: Print the URL and ask whether to open a browser. In many + situations (such as usage on a server through ssh), it's preferable to not + open the browser on the reporting computer. Thanks to Matt Zimmerman for the + initial patch! (LP: #286415) + - general-hooks/generic.py: Collect important glib errors/assertions (which + should not have private data) from ~/.xsession-errors (LP: #431807) + - launchpad.py: Link hardware data submission key if it exists. (LP: #424382) + - apport-cli: Fix crash with non-ASCII characters in prompts. + - Fix "apport-bug symptomname" to actually work. + - launchpad.py: Fix crash on invalid credentials file. Thanks to Marco + Rodrigues for the initial patch! (LP: #414055) + * man/apport-bug.1: Document APPORT_IGNORE_OBSOLETE_PACKAGES (cherrypicked + from trunk), and APPORT_STAGING (Ubuntu specific change, since it's a + launchpad backend specific variable). + * bin/apport-bug: Ignore -p option when giving two arguments, to keep + compatibility with current bug filing instructions. (LP: #356755) + * debian/copyright: Update copyright year and fix GPL link, thanks Marco + Rodrigues! + + -- Martin Pitt Fri, 02 Oct 2009 13:25:58 +0200 + +apport (1.9.1-0ubuntu3) karmic; urgency=low + + * Merge bug fixes from trunk: + - apport-cli: Print the URL and ask whether to open a browser. This makes + ubuntu-bug work much better for servers, now that ubuntu-bug is by and + large mandatory. (LP: #286415) + - launchpad.py: Consistently respect $APPORT_STAGING, so that it works + for bug filing as well. (LP: #435112) + + [ Matt Zimmerman ] + * data/general-hooks/ubuntu.py: Add metadata and tags for bugs reported from + EC2 and UEC instances. + + -- Martin Pitt Fri, 25 Sep 2009 18:51:44 +0200 + +apport (1.9.1-0ubuntu2) karmic; urgency=low + + * kde/bugreport.ui: Select "complete report" option by default, to actually + be able to file bugs if the options are not shown. Thanks to Yuriy Kozlov! + Fix cherrypicked from trunk. (LP: #405378) + + -- Martin Pitt Wed, 23 Sep 2009 10:18:28 +0200 + +apport (1.9.1-0ubuntu1) karmic; urgency=low + + [ Martin Pitt ] + * New upstream bug fix release: + - hookutils.py, attach_hardware(): Do not attach empty Pccardctl*. + - apport/report.py, add_gdb_info(): Do not throw away stderr from gdb. + - data/general-hooks/parse_segv.py: + + Handle arithmetic wrapping correctly. + + Handle empty base, scale, or index registers in disassembly. + + Handle in/out ioport faults. + - Various improvements to user-visible strings, thanks to Marco Rodrigues! + (LP: #178507) + - Various apport-retrace robustifications. + - setup.py: Fix DistUtilsExtra version check. (LP: #428337) + - hookutils.py, attach_gconf(): Do not overwrite previous values from + other packages, thanks Loïc Minier! + - hookutils.py, attach_gconf(): Fix crash with nonexisting tags. + + [ Loïc Minier ] + * Upstream source is at https://launchpad.net/apport/+download not + archive.ubuntu.com. + + -- Martin Pitt Tue, 22 Sep 2009 12:51:38 +0200 + +apport (1.9-0ubuntu6) karmic; urgency=low + + * debian/apport.upstart: + - Use "exit" in Upstart script rather than "return". + - Fix post-stop script to write to the correct file. LP: #430895. + + -- Scott James Remnant Wed, 16 Sep 2009 20:33:49 +0100 + +apport (1.9-0ubuntu5) karmic; urgency=low + + * Merge bug fixes from trunk: + - hookutils.py, attach_hardware(): Do not attach empty Pccardctl*. + - apport/ui.py: Show a better message when failed connection to crash + database. Thanks to Marco Rodrigues! (LP: #178507) + - Do not throw away stderr from gdb. + - data/general-hooks/parse_segv.py: Handle arithmetic wrapping correctly. + - backends/packaging-apt-dpkg.py: More robust of missing ExecutablePath + due to outdated packages. + - setup.py: Fix DistUtilsExtra version check. (LP: #428337) + * data/general-hooks/ubuntu.py: Add distribution channel descriptor, as per + https://wiki.ubuntu.com/FoundationsTeam/Specs/OemTrackingId . + * data/general-hooks/ubuntu.py: Do not allow users to file bugs against + upgrade-system if the package isn't actually installed. Way too many + upgrade failures get wrongly reported against this. (LP: #404727) + * debian/rules: Entirely drop obsolete dh_installinit call. + + -- Martin Pitt Tue, 15 Sep 2009 17:31:26 +0200 + +apport (1.9-0ubuntu4) karmic; urgency=low + + FFE LP: #427356. + + * Replace init script with Upstart job. + * debian/control: + - Bump build-dependency on debhelper for Upstart-aware dh_installinit + + -- Scott James Remnant Tue, 15 Sep 2009 03:33:57 +0100 + +apport (1.9-0ubuntu3) karmic; urgency=low + + * apport/report.py: add upstream bzr commit 1591: + - include stderr in gdb command output + + -- Kees Cook Wed, 09 Sep 2009 19:32:05 -0700 + +apport (1.9-0ubuntu2) karmic; urgency=low + + * Add missing python-apt build dependency. + + -- Martin Pitt Tue, 08 Sep 2009 17:41:04 +0200 + +apport (1.9-0ubuntu1) karmic; urgency=low + + * New upstream release: + - Add "do what I mean" mode to command line argument parsing (applies to + all interfaces: -cli, -gtk, -kde). When giving a single argument and no + options, determine the most likely mode, like reporting a bug against a + symptom, package, executable name, or PID. + - Add program "apport-bug" which determines the most appropriate user + interface (GTK, KDE, CLI) and files a bug through it, using the single + argument "do what I mean" mode. This is an improved version of Ubuntu's + "ubuntu-bug" script. + - Update apport-cli manpage to current set of options and behaviour. Also + point out that apport-gtk and apport-kde share the same CLI. + - setup.py now installs apport-{gtk,kde} into $prefix/share/apport/, they + are not supposed to be called directly. This also reflects the path + which the .desktop files expect. + - setup.py now installs the internal helper scripts like + "kernel_crashdump", "apport", or "apportcheckresume" into + $prefix/share/apport instead of $prefix/bin. + - Update usage of gettext to work around Python bug of gettext() not + returning unicodes, but str. Fixes UnicodeDecodeErrors on translated + --help output. + - Add missing gettext wrapping for user-visible strings in + apport-{retrace,unpack} and ui.py; thanks to Marco Rodrigues! + - backends/packaging-apt-dpkg.py: Robustify get_{source,architecture} for + uninstalled packages + - ui.py: Add --version option. Thanks Marco Rodrigues! (LP: #383694) + * debian/local/apport-collect: Fix KeyError crash on nonexisting LP bug + number. Thanks Marco Rodrigues! (LP: #424273) + * debian/control: Bump Standards-Version to 3.8.3 (no changes necessary). + * debian/local/apport-collect: Point out that you need to select "Change + anything" privileges. (LP: #373700) + * debian/control: Drop obsolete texlive-latex-recommended build dependency. + * debian/rules: Drop --install-scripts, upstream now installs the files and + binaries into the right place. Adapt debian/*.install accordingly. + * Drop debian/local/ubuntu-bug{,.1} and replace them with symlinks to + apport-bug{,.1}, which is a more robust version of ubuntu-bug. + + -- Martin Pitt Tue, 08 Sep 2009 15:53:33 +0200 + +apport (1.8.2-0ubuntu1) karmic; urgency=low + + [ Martin Pitt ] + * New upstream bug fix release: + - crashdb.py: Fix handling of non-ASCII crash signatures + - packaging-apt-dpkg.py: Run ExecutablePath/InterpreterPath check later, + so that it does not always have to be done + - crashdb.py: Never mark a bug as a duplicate of itself. + - launchpad.py, close_duplicate(): Add duplicate assertion + - Update Ubuntu bug pattern URL + - launchpad.py: Add "cache_dir" option and $APPORT_LAUNCHPAD_CACHE + environment variable to specify a non-temporary cache directory. + (LP: #416804) + - packaging-apt-dpkg.py, get_architecture(): Only use installed + architecture if package is actually installed + - launchpad.py: Drop explicit temporary cache dir, launchpadlib does that + automatically now. Thanks to Marco Rodriguez! + + [ Marco Rodrigues ] + * debian/local/setup-apport-retracer: Switch to karmic. + + -- Martin Pitt Sat, 05 Sep 2009 13:04:16 +0200 + +apport (1.8.1-0ubuntu1) karmic; urgency=low + + * New upstream bug fix release: + - data/general-hooks/generic.py: Check $HOME, not /home for enough space. + (LP: #422658) + - launchpad.py: Intercept httplib2.ServerNotFoundError as well, to avoid + crashes when being offline. (LP: #396276) + - apport-cli: Save reports with .apport extension instead of .txt. Thanks + to Steve Beattie! (LP: #401983) + - fileutils.py, likely_packaged(): Ignored crashes in /var, packages don't + ship executables there, and it creates false positives. (LP: #414368) + - packaging-apt-dpkg.py, get_modified_files(): Fix crash with empty lines. + (LP: #408280) + - packaging-apt-dpkg.py: Use installed version instead of candidate + version where appropriate. This also fixes a crash where an obsolete + package is not available any more. (LP: #423511) + - hookutils.py, attach_gconf(): Fix crash with keys which do not have a + schema default. (LP: #422277) + - launchpad.py: Remove LP #353805 workaround, seems fixed now. + - launchpad.py: Talk to staging if $APPORT_STAGING is set. + - launchpad.py: Explicitly supply content_type for addAttachment, current + wadllib requires it now. + - apport_python_hook.py: Paper over inexplicable import error. + (LP: #348250) + - apport_python_hook.py: Protect against nonexisting sys.argv. + (LP: #418051) + - apport/ui.py, load_report(): Check that report has ProblemType field. + (LP: #198543) + - ui.py: Fix handling of complete vs. reduced report size. (LP: #92653). + This also fixes a race condition crash with os.path.getsize(). + (LP: #348137) + - fi.po: Fix mistranslation of "&Cancel". (LP: #355303) + - apport-{gtk,kde}: Check for having $DISPLAY at startup to avoid crashes. + (LP: #411276) + - report.py, add_gdb_info(): Fix race condition in unlink_core, thanks to + Tommi Komulainen! (LP: #397945) + - ui.py, load_report(): Robustify check whether program is still + installed. (LP: #329184) + - packaging-apt-dpkg.py, install_retracing_packages(): Install package for + ExecutablePath/InterpreterPath if missing; this can happen with package + hooks which reassing package + - launchpad.py: Add a comment when marking a bug as a duplicate. + (LP: #418871) + * Move gdb dependency from apport to GUI packages to avoid pulling in gdb on + Ubuntu server. Thanks to Steve Beattie! (LP: #354172) + * ubuntu-bug: Fix handling of .crash file arguments, thanks to Marco + Rodrigues for pointing this out! (LP: #422881) + * debian/local/apport-collect: Set content_type and description, wadllib + requires them now. (LP: #423512) Also drop the ASCII reencoding + workaround, this doesn't seem to be necessary any more. + * apport/hookutils.py, attach_conffiles(): Fix crash with obsolete + conffiles. (LP: #412132) + * debian/local/apport-collect: Do not upload data if the affected package + isn't installed and there is no source package hook available either. + (LP: #417277) + * debian/local/ubuntu-bug: Accept .apport extension, too; thanks to Steve + Beattie! (LP: #401983) + * debian/local/apport-collect: Drop $APPORT_STAGING check, it's done by + launchpad.py itself now. + + -- Martin Pitt Thu, 03 Sep 2009 21:08:31 +0200 + +apport (1.8-0ubuntu2) karmic; urgency=low + + * apport/report.py: add upstream bzr 1538 commit: + - change to upstream glibc's __abort_msg variable name. + - filter out memory addresses when matching assert-bug duplicates. + + -- Kees Cook Fri, 28 Aug 2009 12:47:14 -0700 + +apport (1.8-0ubuntu1) karmic; urgency=low + + * New upstream release: + - Do not generally ignore SIGABRT any more. Try to extract the assertion + message from the core dump, and add it as "AssertionMessage" field. Mark + reports as unreportable if they do not have an assertion message and crashed + with SIGABRT. This implements UbuntuSpec:security-karmic-apport-abort. + - report.py, add_hooks_info(): Add optional package/srcpackage argument. Hooks + can use that to change the affected package or call hooks from different + packages. + - KDE frontend implementation of ui_question_userpass(), for crash databases + which need to ask for credentials. + - hookutils.py: New funtion attach_wifi() to add wireless network related + information to reports. + - Fix the test suite on current kernels; test/crash previously often failed + with python segfaults, since it killed the test processes too early. + + -- Martin Pitt Wed, 26 Aug 2009 13:19:51 +0200 + +apport (1.7-0ubuntu4) karmic; urgency=low + + [ Colin Watson ] + * data/package-hooks/source_debian-installer.py: Report Ubiquity bugs + against the ubiquity source package, rather than rejecting them. + + [ James Westby ] + * data/package-hooks/source_linux.py: submit oopses back if the user + accepts. Use the new kerneloops-submit to do it. + * bin/kernel_oops: kerneloops will now pass the checksum, so if it does + then base the report path on that to uniquify the reports. + * apport/fileutils.py: allow uid to be a string so that we can use + the checksum in place of the uid. + + -- James Westby Tue, 25 Aug 2009 21:15:24 +0100 + +apport (1.7-0ubuntu3) karmic; urgency=low + + [ Colin Watson ] + * data/general-hooks/ubuntu.py: File update-grub bugs on grub2 instead of + grub if appropriate. + * apport/hookutils.py: Add command_available method, and use it to add + prtconf and pccardctl output if those commands are available. + * data/package-hooks/source_debian-installer.py: New hook, providing + roughly the same information as is provided by the 'report-hw' tool in + installation-report. + + [ Matt Zimmerman ] + * apport/hookutils.py: Include modem-manager syslog messages in WifiSyslog + * data/general-hooks/ubuntu.py: Exclude bugs already aimed at grub2 from the + update-grub test (in support of Colin's change above) + * data/general-hooks/ubuntu.py: Redirect failures in /etc/kernel/*.d to the + package owning the file which failed + * Make sure that kernel crash dumps are marked as private in Launchpad + (LP: #417059) + + -- Kees Cook Fri, 21 Aug 2009 11:32:06 -0700 + +apport (1.7-0ubuntu2) karmic; urgency=low + + [ Matt Zimmerman ] + * data/general-hooks/ubuntu.py: Detect when a kernel upgrade failure is + caused by update-grub failing, and file the bug on grub instead of linux + * data/general-hooks/ubuntu.py: Detect when a kernel upgrade failure is + caused by update-initramfs failing, and file the bug on initramfs-tools + instead of linux + * data/package-hooks/source_linux.py: Per discussion with ogasawara, attach + ALSA details on kernel bug reports by default. About 9% of sampled kernel + bugs are audio-related. + * data/package-hooks/source_linux.py: Add linux-firmware version to kernel + bug reports + * apport/hookutils.py: Add attach_wifi function with wifi-related debug info + * data/package-hooks/source_linux.py: Attach wifi info by default to kernel + bugs + + [ Martin Pitt ] + * Merge trunk: + - report.py, add_hooks_info(): Add optional package/srcpackage argument. + - Implemented ui_question_userpass [Caio Romão]. + + -- Martin Pitt Sat, 08 Aug 2009 12:20:39 +0200 + +apport (1.7-0ubuntu1) karmic; urgency=low + + * New upstream release: + - Add support for symptoms. + * debian/control: Recommend apport-symptoms. + * debian/local/ubuntu-bug: When called without arguments, run in "show + available symptoms" mode. + + -- Martin Pitt Wed, 05 Aug 2009 19:32:39 +0100 + +apport (1.6-0ubuntu3) karmic; urgency=low + + * Merge trunk: + - apport-gtk: Fix ordering of choices + - bin/package_hook: Fix crash for subdirectories in log dir. (LP: #332350) + - doc/package-hooks.txt: Document allowed chars in report keys. + - Show precise error message for damaged reports. + * ubuntu-bug: Call apport-kde instead of apport-qt. + + -- Martin Pitt Tue, 04 Aug 2009 18:50:26 +0100 + +apport (1.6-0ubuntu2) karmic; urgency=low + + * Re-enable Apport by default, for the alpha-3 release. + + -- Martin Pitt Tue, 21 Jul 2009 00:44:50 +0200 + +apport (1.6-0ubuntu1) karmic; urgency=low + + * New upstream release: + - Add support for kernel crashes, thanks to Michael Vogt! + - apport/ui.py, run_crash(): Do not re-collect information if we already + have a Dependencies field. This happens when calling apport on an already + pre-processed .crash file with -c. (LP: #394497) + - apport/hookutils.py, pci_devices(): Deliver all matching devices, not + just the last one. (LP: #398906) + - hookutils.py, _get_module_license(): Return "invalid" if modinfo fails, + so that they do not count as "free". (LP: #341720) + - packaging-apt-dpkg.py: Support additional custom native origins in + /etc/apport/native-origins.d/ . (LP: #386052) + - packaging-apt-dpkg.py: Drop PPA origin hack, launchpad behaves properly + now + - apport-gtk: Avoid focus stealing when being called without arguments (i. + e. auto-launched). LP: #396243) + - apport-kde: Use standard gettext again + - Fix handling of PC lacking disassembly due to invalid memory location. + * debian/local/apport-collect: Tag bugs with "apport-collected" on success. + (LP: #391392) + + -- Martin Pitt Wed, 15 Jul 2009 18:02:59 +0200 + +apport (1.5-0ubuntu2) karmic; urgency=low + + * Merge fixes from trunk: + - packaging-apt-dpkg.py: Fix install_retracing_packages() for pre-0.7.9 + python-apt API. + - Sort the list of dependencies so it's easier to scan (LP: #391021) + + -- Martin Pitt Tue, 30 Jun 2009 22:39:18 +0200 + +apport (1.5-0ubuntu1) karmic; urgency=low + + * New upstream release: + - Drop all Makefiles, po/POTFILES.in, and most code from setup.py, and use + DistUtilsExtras.auto which "just does the right thing" for most build + system tasks. This requires python-distutils-extra >= 2.2, see + https://launchpad.net/python-distutils-extra + - Move all test scripts into test/, to unclutter source tree. + - setup.py now auto-detects the required packaging backend if + apport/packaging_impl.py is not manually installed. + * debian/control: Add python-distutils-extra build dependency. + * debian/rules: Drop stuff which is now properly done by the upstream build + system. + * Drop debian/apport.examples, preloadlib died long ago. + * Adapt debian/apport-{gtk,kde}.install to new upstream build system, which + now installs the .desktop files itself. + + -- Martin Pitt Mon, 29 Jun 2009 12:00:21 +0200 + +apport (1.4-0ubuntu1) karmic; urgency=low + + * New upstream release. Compared to our previous snapshot, this changes: + - Replace Qt4 frontend with KDE frontend, thanks to Richard Johnson! + - apport/ui.py, run_report_bug(): Clean up PID information collection. + - gtk/apport-gtk.ui: Drop invalid icon reference. (LP: #389064) + - ui.py: Do not reject non-distro package reports if report sets CrashDB + (for third-party destination). (LP: #391015) + - bin/kernel_crashdump: Use packaging API properly. + - apport-gtk.ui: Drop erroneous translatable flag from stock buttons. + - Update German translations. + * debian/*: qt → kde, add transitional package for apport-qt. + * Drop backends/packaging_rpm.py. We don't use it in the Ubuntu package at + all, and it's still in trunk. + * debian/rules: Drop some deprecated dh_* calls, cdbs's debhelper.mk has + done them for a long time. + * debian/control: Bump Standards-Version to 3.8.2 (no changes necessary). + * debian/control: Replace URLs in descriptions with proper Homepage: field. + + -- Martin Pitt Fri, 26 Jun 2009 10:44:54 +0200 + +apport (1.3-0ubuntu2) karmic; urgency=low + + * debian/local/apport-collect: Pass None as HookUI object. This will crash + with interactive hooks, but is a good enough immediate bandaid. + (LP: #385811) + * Merge fixes from trunk: + - packaging-apt-dpkg.py: Add backwards compatibility code for python-apt < + 0.7.9 to not break backportability. + - hookutils.py, command_output(): Force LC_MESSAGES=C, to avoid translated + output in bug reports. (LP: #383230) + - apport-gtk.ui: Make details window resizable, and lower default size, so + that it will fit on small screens. (LP: #365517) + + -- Martin Pitt Fri, 12 Jun 2009 12:47:59 +0200 + +apport (1.3-0ubuntu1) karmic; urgency=low + + * New upstream release. Compared to our bzr snapshot, this has: + - Interactive package hooks: + + Add apport.ui.HookUI class which provides GUI functionality such as + yes/no + questions or file dialogs to hooks. + + add_info() in package hooks now can (optionally) take a second argument + which is the HookUI instance. + + See doc/package-hooks.txt for details. + + See UbuntuSpec:desktop-karmic-symptom-based-bug-reporting + - New function apport.hookutils.root_command_output() to run a command as root, + through gksu/kdesudo/sudo, depending on the desktop environment. + + -- Martin Pitt Wed, 10 Jun 2009 16:49:13 +0200 + +apport (1.2.1-0ubuntu3) karmic; urgency=low + + * debian/control: Bump Standards-Version to 3.8.1 (no changes necessary). + * debian/control: Bump debhelper dependency for dh_icons, to satisfy + lintian. + * general-hooks/ubuntu.py: Fix IndexError crash if report does not have a + Package field. Check whether we actually have attach_conffiles() (which is + not the case when running the upstream version). + * Merge trunk: + - launchpad.py: Fix crash for unset titles. + - Add segfault analysis hook for quick segv reviews. Thanks to Kees Cook! + - run-tests: Replace hardcoded Python path with dynamically detected path. + + -- Martin Pitt Wed, 03 Jun 2009 09:52:03 +0200 + +apport (1.2.1-0ubuntu2) karmic; urgency=low + + * debian/control: Update Vcs-Bzr: for new location (moved from project + branch to package branch). + * Merge bug fixes from trunk: + - apport-cli: Fix report saving in "bug report" mode. (LP: #353253) + - Drop "UnsupportableReason" field, it is too similar to + UnreportableReason and just confusing. + - ui.py: Check UnreportableReason for run_report_bug() as well. + (LP: #361359) + - general-hooks/generic.py: Do not report problems with low free space on + / or /home. (LP: #381047) + - launchpad.py: Do not overwrite report['Title']. + - launchpad.py: Repair support for extra tags. + - New function apport.hookutils.root_command_output() to run a command as + root, through gksu/kdesudo/sudo, depending on the desktop environment. + (Part of UbuntuSpec:desktop-karmic-symptom-based-bug-reporting) + - launchpad.py: Fetch DpkgTerminalLog. (LP: #382589) + - launchpad.py: More robust download(), fixes other part of (LP: #382589) + - problem_report.py: Allow dashes and underscores in key names. Update + doc/data-format.tex accordingly. (LP: #380811) + + -- Martin Pitt Tue, 02 Jun 2009 11:59:41 +0200 + +apport (1.2.1-0ubuntu1) karmic; urgency=low + + * New upstream release: + - Moving away from deprecated APIs: + + packaging-apt-dpkg.py: Use python-apt >= 0.7.9 official API and drop + usage of internal symbols. + + hookutils.py: Drop hal related functions and queries, replace with + udev database, udev log file, and DMI information from sysfs. + + gtk UI: Convert from libglade to gtk.Builder. + - Bug fixes: + + hookutils.py: Drop /proc/version_signature collection, it is Ubuntu + specific. + + apportcheckresume: Fix log collection from pm-utils. + + Fix various crashes and report properties for reporting against + uninstalled packages. + * debian/control: Drop python-glade2 dependency, bump python-gtk2 dependency + to ensure availability of gtk.Builder. + * hookutils, attach_conffiles(): Remove leftover debugging spew. + * debian/apport-qt.install: Install the individual Qt .ui files instead of + *.ui, since GTK's are now also called *.ui. + + -- Martin Pitt Fri, 15 May 2009 11:28:34 +0200 + +apport (1.1.1-0ubuntu2) karmic; urgency=low + + [ Martin Pitt ] + * hookutils.py: Do not attach /proc/version_signature, it's Ubuntu specific. + (Merged from trunk). Instead, attach it in general-hooks/ubuntu.py. + * general-hooks/ubuntu.py: Attach package conffile information. + * debian/local/apport-collect: Add workaround for launchpadlib bug + LP#353805, to avoid crashing with non-UTF8 attachments. (LP: #368004) + * debian/local/apport-collect: Fix import of launchpadlib's HTTPError. + * apport/hookutils.py, attach_conffiles(): Ignore empty lines from + dpkg-query output. + * general-hooks/ubuntu.py: Strip off '/target' prefix from ExecutablePath + and InterpreterPath, to correctly process crash reports from the live + system installer. + * apport/hookutils.py, attach_conffiles(): Do not use command_output(), + since that causes error messages to get parsed as conffiles. Use + subprocess properly. + * backends/packaging-apt-dpkg.py: Replace deprecated python-apt properties + with current ones (merged from trunk). Update python-apt dependency to + >= 0.7.9. + * packaging-apt-dpkg.py, get_modified_files(): Do not show package list file + as modified if the package is not installed (merged from trunk). + (LP: #364533) + * backends/packaging-apt-dpkg.py, install_retracing_packages(): Fix syntax + error which broke the retracers. + + [ Andy Whitcroft ] + * bin/apportcheckresume: the suspend _and_ hibernate logs are both in + pm-suspend.log. + * bin/apportcheckresume: remove redunant check for file before attaching + stress log. + + -- Martin Pitt Wed, 13 May 2009 15:22:53 +0200 + +apport (1.1.1-0ubuntu1) karmic; urgency=low + + [ Martin Pitt ] + * New upstream security update: + - etc/cron.daily/apport: Only attempt to remove files and symlinks, do not + descend into subdirectories of /var/crash/. Doing so might be exploited by + a race condition between find traversing a huge directory tree, changing + an existing subdir into a symlink to e. g. /etc/, and finally getting + that piped to rm. This also changes the find command to not use GNU + extensions. Thanks to Stephane Chazelas for discovering this! + (LP: #357024, CVE-2009-1295) + - Other fixes were already cherrypicked in the previous upload. + + [ Matt Zimmerman ] + * package-hooks/source_linux.py: Attach info for linux-restricted-modules + and linux-backports-modules + + -- Martin Pitt Thu, 30 Apr 2009 09:08:29 +0200 + +apport (1.1-0ubuntu1) karmic; urgency=low + + * New upstream release: + - Drop some remaining distro specific pieces of code from non-backends. + - Add hookutils methods for attaching relevant packages, greatly improve + attach_alsa() for sound problem debugging. + - Move launchpad crash database implementation from ever-breaking + python-launchpad-bugs (screenscraping) to launchpadlib (official and + stable Launchpad API). (LP: #353879) + - Add new field Report.pid which gets set on add_proc_info() and can be + used by hooks. + - setup.py: Properly clean up all generated files, install missing + mimetypes/text-x-apport.svg icon symlink. + - Add README file. + - Add translations from Launchpad. + - Remove preloadlib/*; it's undermaintained, and not really useful any + more these days. + - Various bug fixes; most visible being the misnamed + etc/default/apport.default file (which should just be + etc/default/apport). + * Merge some bug fixes from trunk: + - launchpad.py: Send and read Date: field again, reverting r1128; it is + useful after all. (LP: #349139) + - report.py, add_proc_info(): Only add ProcAttrCurrent if it is not + "unconfined". + - ui.py: Detect invalid PIDs (such as for kernel processes) and give a + friendly error message. (LP: #360608) + - report.py, add_hooks_info(): Always run common hooks, and run source + package hooks if we do not have a binary package name. (LP: #350131) + - launchpad.py: Consider socket errors when connecting as transient, so + that crash-digger doesn't stop completely on them. + * Drop debian/apport.README.Debian, superseded by upstream README. + * Drop debian/apport.links, done by upstream setup.py now. + * debian/rules, debian/apport.preinst: Drop upgrade fix for misnamed default + file again, was only necessary for intra-Jaunty upgrades. + * debian/control: python-launchpad-bugs → python-launchpadlib dependencies. + * debian/local/apport-collect: Drop launchpadlib login code, just use the + CrashDatabase implementation from apport/crashdb_impl/launchpad.py. + * Make package backportable to hardy and intrepid: + - debian/control: Relax python-central buil-dependency to 0.5.6. + - debian/rules: Determine DH_PYCENTRAL value ("include-links" vs. + "nomove") based on the installed pycentral version. + - debian/rules: Only supply --install-layout=deb when Python version is + 2.6. + * apport/hookutils.py: Add docstring for attach_hardware, thanks Matt + Zimmerman! (Merged from lp:~mdz/apport/hookutils) + * apport/crashdb_impl/launchpad.py: Support older wadllib API + where bug.date_created was a string instead of a datetime object. + (Cherrypicked from trunk). + * debian/control: Drop apport dependency to python-xdg, it's not required. + (LP: #354172) + * debian/control: Drop gdb from Depends: to Recommends:. (LP: #354172) + * debian/local/apport-collect: Print a friendly error message instead of + crashing if the bug number is not an integer. (LP: #351050) + * debian/local/apport-collect: Change incomplete tasks back to "New" after + data collection. (LP: #363126) + * debian/apport.links: source_linux-meta.py -> source_linux.py package hook, + so that apport-collect works on "linux" source bug tasks. These get + opportunistically translated into binary packages, but the binary "linux" + is built by the source "linux-meta". (LP: #350131) + * debian/local/setup-apport-retracer: + - Use ports.ubuntu.com for non-{i386,amd64,lpia}. + - Set up Jaunty by default. + - Fix test for being in local unpackaged apport source tree. + - Drop installation of python-launchpad-bugs. + - Install bzr branches/packages necessary for launchpad, in a shared + ~/launchpadlib/ tree: launchpadlib, wadllib, oauth, lazr.uri, httplib2, + simplejson. + - Clean up apport-chroot calling for extra packages. + + -- Martin Pitt Tue, 28 Apr 2009 10:50:49 +0200 + +apport (1.0-0ubuntu5) jaunty; urgency=low + + [ Martin Pitt ] + * Rename etc/default/apport.default to etc/default/apport (brown paperbag), + and add debian/apport.preinst to remove the apport.default file on + upgrades. (LP: #361543) + * debian/rules: Call dh_installinit with --onlyscripts, so that the package + calls update-rc.d again. This fixes the calling of init script again, + which got broken in 1.0-0ubuntu1. (LP: #361579) + + [ Matt Zimmerman ] + * package-hooks/source_linux.py: Attach /etc/initramfs-tools/conf.d/resume to + show the resume device for hibernation + + -- Martin Pitt Wed, 15 Apr 2009 22:36:33 +0200 + +apport (1.0-0ubuntu4) jaunty; urgency=low + + * etc/default/apport.default: Disable Apport by default for the final + release. + + -- Martin Pitt Tue, 14 Apr 2009 11:47:29 +0200 + +apport (1.0-0ubuntu3) jaunty; urgency=low + + * apport/hookutils.py: Factor out package_versions() to generate a simple + text listing of relevant package versions and use it in attach_printing() + * apport/hookutils.py: Add new function attach_relevant_packages() to attach + version information (and perhaps eventually run hooks?) for related + packages + * apport/hookutils.py: Add glob matching to package_versions() + * apport/hookutils.py: Add fuser info and dmesg to attach_alsa + * apport/hookutils.py: Add codec info to attach_alsa + + -- Matt Zimmerman Thu, 09 Apr 2009 07:36:45 -0700 + +apport (1.0-0ubuntu2) jaunty; urgency=low + + * backends/packaging-apt-dpkg.py: Add missing shutil import. + * debian/local/ubuntu-bug: Filter out -p and -P, for backwards calling + compatibility. (LP: #356755) + + -- Martin Pitt Mon, 06 Apr 2009 23:04:39 -0700 + +apport (1.0-0ubuntu1) jaunty; urgency=low + + * Apport has a proper upstream trunk now (lp:apport) and made an 1.0 + upstream release. Use this as an orig.tar.gz. This does not change any + code for Jaunty, just removes the Fedora/OpenSUSE specific .spec and init + scripts. + * Add bzr-builddeb configuration (merge mode). + * Add debian/watch for upstream releases on Launchpad. + * Drop debian/python-apport.postinst, obsolete for a long time. + + -- Martin Pitt Mon, 06 Apr 2009 17:37:48 -0700 + +apport (0.149) jaunty; urgency=low + + Do some internal cleanup of distribution specific stuff: + + * problem_report.py, man/apport-unpack.1: Fix description of .crash file + syntax (RFC822, not "Debian control"). + * Move cron.daily, init script, and default file from debian/ to etc/, and + install them in setup.py. These files are appropriate for upstream + installation. + * Move crashdb.conf and doc/README.blacklist to etc/, to simplify setup.py. + * setup.py: Move *.mo generation/installation into my_install_data class, + for cleanliness. + * Move installation of missing packages for retracing from + bin/apport-retrace to new abstract interface apport/packaging.py, + install_retracing_packages() and remove_packages(), and move the apt/dpkg + code to backends/packaging-apt-dpkg.py. This removes a major piece of + apt/dpkg specific code from non-backends. + * bin/apport-retrace: Rename option --no-dpkg to --no-pkg and update + bin/apport-chroot accordingly. + * Move bin/apport-chroot and man/apport-chroot.1 to debian/local, since they + are totally Debian/Ubuntu specific. + * debian/local/setup-apport-retracer: Update apport-chroot and crashdb.conf + paths for above changes. + * apport/hookutils.py, files_in_package(): Replace dpkg-query call with + packaging.get_files(), to avoid Debianism. + * man/apport-retrace.1: Drop reference to "apt", simply talk about package + installation. + + Bug fixes: + + * setup.py: Fix homepage URL. + * debian/local/apport-chroot: If multiple distro IDs point to the same + chroot, do not upgrade them more than once with "upgrade all". + + -- Martin Pitt Mon, 06 Apr 2009 16:06:33 -0700 + +apport (0.148) jaunty; urgency=low + + [ Matt Zimmerman ] + * apport/hookutils.py: add attach_media_build to include information about + the build of installation media in use (i.e. in a casper live CD + environment) + * general-hooks/ubuntu.py: use attach_media_build (LP: #351781) + * bin/apportcheckresume: Use attach_file_if_exists rather than attach_file to + avoid spurious error messages about non-existent log files (LP: #351973) + + [ Martin Pitt ] + * debian/local/ubuntu-bug: Drop generic passthrough of apport-{cli,gtk,kde} + options since this leads to too much confusion. Instead just support a + single argument and check whether it is a pid, a package name, a .crash + file, or a program path. This does the right thing when calling it with a + .crash file (LP: #347392) and fixes the help output (LP: #344923) Update + manpage accordingly. + * apport/hookutils.py: Move attach_media_build() to + general-hooks/ubuntu.py, since it is Ubuntu specific. + * bin/apport-retrace: Fix KeyError crash on bugs with an ExecutablePath + which does not exist any more. Close the bug as invalid instead. + (LP: #352331) + * bin/kernel_oops: Add "kernel-oops" tag. Since both bin/kernel_oops and + bin/apportcheckresume use the "kerneloops" bug class, it previously was + hard to filter out the bug reports which were real oopses. (LP: #349621) + + -- Martin Pitt Wed, 01 Apr 2009 18:10:01 +0200 + +apport (0.147) jaunty; urgency=low + + * bin/apportcheckresume: report the pm-suspend.log/pm-hibernate.log + from /var/lib. + * bin/apportcheckresume: only attempt to attach the stress log if its is + present. + * bin/apportcheckresume, debian/apport.init: add detection for late + resume hangs, those where the user thinks the system was working. + (LP: #335323) + + -- Andy Whitcroft Mon, 30 Mar 2009 09:47:28 +0200 + +apport (0.146) jaunty; urgency=low + + * apport/report.py, _generate_sigsegv_report(): Turn into a class method, so + that it can be used by test cases in other modules as well. Also add + missing Signal field. + * apport/crashdb_impl/launchpad.py: Fully enable operation with + staging.launchpad.net. + * apport/crashdb_impl/launchpad.py: Add initial test suite, performing data + upload, Python and SEGV bug reporting, report download, report updating, + tag and duplicate handling. This happens on staging.launchpad.net. + * apport/crashdb.py: Add new interface duplicate_of(id) to return the master + bug of a duplicate. Also document that close_duplicate() with "None" + master bug will un-duplicate the bug. + * apport/crashdb_impl/{launchpad,memory}.py: Implement duplicate_of() and + add test cases. The Launchpad test case reproduces the + "duplicate-of-a-duplicate" regression, which now got fixed in + python-launchpad-bugs bzr head. + * apport/ui.py, open_url(): Also consider a sesssion as "GNOME" if gconfd-2 + is running; some variants such as UNR do not have gnome-panel; this fixes + using the preferred browser for them. (LP: #322386) + * debian/local/apport-collect: Add new option -p to explicitly specify a + (binary) package name instead of guesstimating it from the bug's source + package tasks. Document new option in debian/local/apport-collect.1. + (LP: #333875) + * apport/crashdb.py, duplicate_db_consolidate(): Add logging about removing + invalidated bugs from the duplicate database, now that this actually + works. + * debian/local/ubuntu-bug.1: Update for the possibility to specify a package + name or PID without any options. Also document the "ubuntu-bug linux" + special case. (LP: #348985) + * debian/local/ubuntu-bug.1: Add missing documentation of the case of + specifying a path name. + * backends/packaging-apt-dpkg.py: When unpacking source trees, try + "debian/rules setup" last, since it is the least common variant. + * debian/local/ubuntu-fat-chroot: Divert away + /usr/lib/xulrunner-1.9.1b3/xulrunner-bin. It is called on debian/rules + patch in xulrunner-1.9.1 and hangs eternally in the fakechroots. This is + only a temporary kludge, though, until the next xulrunner version lands. + * apport/crashdb_impl/launchpad.py: Add test case: Update a bug report which + got marked as a duplicate during processing. This reproduces #349407. + * apport/crashdb_impl/launchpad.py, update(): Intercept and ignore IOErrors + when changing the bug priority. This happens if a bug gets duplicated + underneath us. (LP: #349407) + * apport/crashdb.py, get_crashdb(): Print syntax errors from parsing + conf.d/*.conf to stderr. + * apport/crashdb_impl/launchpad.py: Support new CrashDB option "project" + which can be set to a LP project name to file bugs against that project + instead of the distribution. Add test case for filing crash bug against a + project, updating it, duplicating/unduplicating it, and determining fixed + version. (LP: #338835) + * bin/crash-digger: If apport-retrace exits with 99, consider it a transient + error and just stop the retracer, but don't leave the lock file behind. + Add appropriate test case to test-crash-digger. + * bin/apport-retrace: If apt update fails due to a "hash sum mismatch", exit + with a "transient error" code, to stop (but not break) the retracing + cycle. + + -- Martin Pitt Fri, 27 Mar 2009 17:01:08 +0100 + +apport (0.145) jaunty; urgency=low + + * apport/crashdb_impl/launchpad.py: Fix typo in previous upload. + * debian/local/apport-collect: Do not crash on + launchpadlib.errors.HTTPError, but give a proper error message and point + out that this script needs "change anything" privileges. (LP: #338201) + * apport_python_hook.py: Fix crash for already existing reports, and make + behaviour equivalent to bin/apport: Silently exit for existing unseen + crash report, and overwrite existing seen crash report. Add test cases. + (LP: #323714) + * general-hooks/automatix.py: Refuse to send bug reports when ultamatix is + installed. + + -- Martin Pitt Tue, 10 Mar 2009 18:45:34 +0100 + +apport (0.144) jaunty; urgency=low + + * apport/crashdb_impl/launchpad.py, mark_retrace_failed(): If report is + invalid, remove CoreDump.gz and other attachments. + * bin/apport-retrace: If we didn't find the ExecutablePath on the system + because the package is out of date, don't crash, but close the bug as + invalid. + + -- Martin Pitt Tue, 10 Mar 2009 10:45:56 +0100 + +apport (0.143) jaunty; urgency=low + + * debian/apport.README.Debian: Document how to temporarily and permanently + enable crash interception. + * backends/packaging-apt-dpkg.py, is_distro_package(): Do not consider a + package a native distro one if installed version is "None". This happens + with some PPA packages. (LP: #252734) + * apport/report.py, anonymize(): Move user name anonymization into the + "non-root" case as well; fixes uninitialized variable. (LP: #338847) + + -- Martin Pitt Mon, 09 Mar 2009 12:16:49 +0100 + +apport (0.142) jaunty; urgency=low + + * apport/report.py: Do not include lsb_release's stderr in the + DistroRelease: output. + * apport/hookutils.py: Fix attach_printing(): + - Correct spelling or "error_log". + - Do not call fgrep with no file names (if /etc/cups/ppd/ is empty), since + that hangs forever. + * apport/report.py, _gen_stacktrace_top(): Fix parsing of stacktraces + with some addresses missing. Add test cases. (LP: #269133) + * apport/ui.py, run_report_bug(): Show details of collected information and + give the user a chance to cancel. Previously, collected data was sent + directly to Launchpad. Nowadays lots of packages have hooks, so we cannot + guarantee any more that bug reports only have non-sensitive information. + (LP: #195514) This also allows the user to cancel if (s)he inadvertedly + clicked on "Report a problem". (LP: #279033) + * apport/ui.py: Fix crash in get_complete_size() for reports that are + constructed on the fly instead of loaded from a file (i. e. for bug + reports). Fixes displaying of report in apport-cli. + * apport/report.py: Slight robustification of test_add_gdb_info_script() + test case. + * debian/local/ubuntu-bug: Fix invocation with "--help". (LP: #305841) + * apport/ui.py, load_report(): Clearer error message if report file does not + exist. (LP: #204198) + * Remove redundant verbiage from test suite docstrings. + * apport/report.py, anonymize(): Fix crash when processing root-owned + reports. (LP: #338033) + * apport/report.py, anonymize(): Do not anonymize single-character user and + host names, since they create an utter mess in bug reports, and also are + very low-sensitive. + * debian/apport.init: Also start apport if force_start=1 is given. This + provides a convenient method of starting apport just for a session without + changing the default file. Add a comment to debian/apport.default about + this possibility. Thanks to Milan for the suggestion and the initial + patch! (LP: #320467) + * backends/packaging-apt-dpkg.py, _get_mirror(): Only consider http:// + mirrors for fetching Contents.gz. (LP: #315797) + + -- Martin Pitt Thu, 05 Mar 2009 17:01:05 +0100 + +apport (0.141) jaunty; urgency=low + + * apport/hookutils.py: Add cups error log to attach_printing() + + -- Brian Murray Mon, 02 Mar 2009 10:55:53 -0800 + +apport (0.140) jaunty; urgency=low + + * debian/python-{apport,problem-report}.install: Fix site-packages → + *-packages. + * run-tests: Only check for local packaging_impl.py if running local tests. + This unbreaks running tests from /usr/share/apport/testsuite/. + + -- Martin Pitt Mon, 02 Mar 2009 11:56:59 +0100 + +apport (0.139) jaunty; urgency=low + + * apport/report.py, anonymize(): Do not anonymize "root". (Side + issue in LP #333542) + * debian/rules: Supply --install-layout=deb to setup.py. + * debian/local/apport-collect: Attach new info to + staging.launchpad.net if $APPORT_STAGING is defined. This makes + testing easier. Describe in debian/local/apport-collect.1. + * debian/local/apport-collect: Ignore ValueErrors from + add_package_info(), which happens if the bug has a source package + task which does not have an identically named binary package name. + Slightly ugly, but it's nontrivial to do that in a sensible + manner; let's just fix the crash for now, since the focus of this + tool is to collect information from hooks. (LP: #334823) + * apport/hookutils.py, hal_dump_udi(): Filter out serial numbers. + (Mentioned in LP #107103) + + -- Martin Pitt Mon, 02 Mar 2009 11:36:18 +0100 + +apport (0.138) jaunty; urgency=low + + * apport/crashdb_impl/launchpad.py: Consider an useful stack trace + sufficient for automatically removing the core dump, it doesn't + need to be perfect. This is in accordance with not setting the + apport-failed-retrace tag for useful, but non-perfect retraces any + more. + * apport/hookutils.py, backends/packaging_rpm.py: Convert usage of + md5 module (which is deprecated in 2.6) to hashlib. + * Replace all instances of using an exception's .message attribute + with str(exception), since message is deprecated in Python 2.6. + * apport/hookutils.py: Add attach_printing(). Thanks to Brian Murray + for the initial patch! (LP: #333582) + + -- Martin Pitt Tue, 24 Feb 2009 22:24:31 +0100 + +apport (0.137) jaunty; urgency=low + + * Set python-version to all, include symlinks in the package. + + -- Matthias Klose Tue, 24 Feb 2009 21:22:36 +0100 + +apport (0.136) jaunty; urgency=low + + [ Andy Whitcroft ] + * bin/apportcheckresume: remove originator in suspend/hibernate/resume + reporting. This was intended for debugging only and is now redundant. + * bin/apportcheckresume, apport/report.py: when collecting resume failures + in very early boot hal may not be running and we thus unable to obtain + the machine type information. Move title generation to the reporting + engine. + + [ Martin Pitt ] + * debian/local/apport-collect: Add user environment information, too + (LANG, PATH, SHELL). (LP: #332578) + + -- Martin Pitt Tue, 24 Feb 2009 14:25:21 +0100 + +apport (0.135) jaunty; urgency=low + + * problem_report.py, test_write_mime_text(): Add test cases for + single-line and two-line UTF-8 values, single-line and two-line + Unicode values and a single-line LF-terminated value. Fix handling + of the latter two. + * problem_report.py, test_write(): Add test cases for single-line + and two-line UTF-8 and Unicode values, and fix handling of these + in write(). + * debian/local/apport-collect: Collect package, OS, and user + information as well. (LP: #332578) + * package-hooks/source_apport.py: Robustify by using hookutils, and + avoid stat errors if /var/crash/* does not exist. + * test-hooks: Update dodgy test for uninstalled package, + libdb4.3-tcl is not available in Jaunty any more. + + -- Martin Pitt Mon, 23 Feb 2009 13:14:24 +0100 + +apport (0.134) jaunty; urgency=low + + * debian/local/apport-collect: Do not collect information for closed + tasks. Thanks for Brian Murray for the initial patch! (LP: #331839) + * apport/crashdb_impl/launchpad.py, download(): Download + DpkgTerminalLog.txt attachment as well. + * apport/report.py: If downloading a nonexisting bug pattern file + name succeeds and returns a HTML snippet with "404 Not Found", + consider this as failure. This repairs falling back to source + package names. (LP: #328751) + * apport/hookutils.py: Replace tabs with spaces. + + -- Martin Pitt Fri, 20 Feb 2009 11:22:15 +0100 + +apport (0.133) jaunty; urgency=low + + [ Andy Whitcroft ] + * apport/hookutils.py: define and include a machine type from the hardware + information in the report, using HAL information where available. + * bin/apportcheckresume: include the machine type in the suspend/hibernate + report title. They are generally machine specific. + + -- Martin Pitt Thu, 19 Feb 2009 17:49:03 +0100 + +apport (0.132) jaunty; urgency=low + + [ Martin Pitt ] + * Add debian/local/apport-collect: Download a Launchpad bug report, + get its source package, check if it has apport hooks, and if so, + run and upload them. Add manpage, too. (LP: #124338) + * debian/control: Add Suggests: python-launchpadlib; this is only + needed by apport-collect, thus we don't need to pull that into + every default installation; if it's not installed apport-collect + will detect and point this out. + * debian/control: Add ${misc:Depends} dependencies. + + [ Jonathan Riddell ] + * Set window icon in apport-qt + + -- Martin Pitt Thu, 19 Feb 2009 13:50:34 +0100 + +apport (0.131) jaunty; urgency=low + + [ Andy Whitcroft ] + * bin/apportcheckresume, bin/kernel_oops, cli/apport-cli, gtk/apport-gtk, + gtk/apport-gtk.glade, qt4/apport-qt: generalised the KernelOops + dialog and handling to allow suspend and hibernate failures present + more accurate reasons for the report. Also commonises all messages + in the three implementations to simplify internationalisation. + + [ Martin Pitt ] + * po/Makefile: Fix merge-po rule to actually work again. + * cli/apport-cli, qt4/apport-qt: Unify string with apport-gtk. + * apport/ui.py: Drop some bogus translatable strings. + * Update German translations. + + -- Martin Pitt Mon, 16 Feb 2009 19:31:41 +0100 + +apport (0.130) jaunty; urgency=low + + [ Martin Pitt ] + * bin/kernel_crashdump: Don't crash if vmcore.log does not exist. + * crashdb_impl/launchpad.py: Tag bugs with the architecture they are + being reported on. + * bin/crash-digger: Revert catching "database is locked" errors + during consolidation, since it just hides more fundamental errors. + * apport/crashdb_impl/memory.py: Improve docstrings of test suite. + * bin/apport-retrace: Do not try to install -dbgsym packages with + nonmatching versions, unless --unpack-only is used. Thanks to + hggdh for the initial patch! (LP: #309208) + + [ Andy Whitcroft ] + * bin/apportcheckresume: modify the oops title and thereby the launchpad + bug title to say suspend or hibernate. + * bin/apportcheckresume: modify the tags to bin/apportcheckresume: + modify the oops title and thereby the launchpad be resume+suspend or + resume+hibernate as appropriate. + * bin/apportcheckresume: include any non-free modules in the bug title. + + -- Martin Pitt Thu, 12 Feb 2009 22:09:35 +0100 + +apport (0.129) jaunty; urgency=low + + * bin/apport-retrace: Log broken reports. + * bin/apport-retrace: Do not mark bugs as invalid after they are + already marked as a duplicate, since that does not work in + Launchpad. + * debian/local/ubuntu-fat-chroot: Symlink /target -> /, to work + for crashes which appear in /target during installation. + * bin/apport: Move argv length/usage help before lock check, so that + it works if the user cannot lock /var/crash/.lock. Thanks to Kees + Cook! + * doc/package-hooks.txt: Point out apport.hookutils. + * apport/ui.py: Check environment variable APPORT_REPORT_THIRDPARTY + in addition to the 'thirdparty' configuration file option for + overriding the "genuine distro package" check. Thanks to Oumar + Aziz OUATTARA! + * apport/crashdb_impl/launchpad.py: In third-party mode, report bugs + against Launchpad projects. Thanks to Oumar + Aziz OUATTARA for his branch! (LP: #213454) + * bin/apportcheckresume: Include /var/lib/pm-utils/stress.log, too. + Thanks to Andy Whitcroft for the initial patch, rewrote to use + apport.hookutils. + * apport/crashdb.py, init_duplicate_db(): Run an integrity check and + raise exception if it fails, to avoid running the retracers on a + corrupt duplicate db. Add test case to + apport/crashdb_impl/memory.py. + * bin/crash-digger: Create a backup of the duplicates database right + after initializing it (which verifies integrity). + * dupdb-admin: Add new command "consolidate". + * apport/crashdb_impl/launchpad.py: Request bug lists with batch + size 300, for slight speedup of consolidation. + * apport/crashdb.py, duplicate_db_consolidate(): Warn about a bug + which is not yet fixed, but does not appear in get_unfixed(). In + Launchpad, this means that the bug does not have the + 'apport-crash' tag any more; if there are many, those would be a + huge time/bandwidth waste. + + -- Martin Pitt Mon, 26 Jan 2009 16:04:16 +0100 + +apport (0.128) jaunty; urgency=low + + * apport/ui.py: Introduce new configuration option "thirdparty" and + ignore the is_distro_package() check if it is set to true. + * bin/apport-retrace: Call Cache.open() after Cache.update(). + * bin/apport-retrace: If downloading a report fails (e. g. the + description was invalidly modified), mark the bug as invalid with + a proper explanation instead of crashing, unless we are in + "stdout" or "output file" mode. + * apport/crashdb_impl/launchpad.py: Apply some heuristics to attempt + recovering broken descriptions as in LP #315728 (intermediate + blank lines, and non-apport data append). + + -- Martin Pitt Mon, 19 Jan 2009 17:49:55 +0100 + +apport (0.127) jaunty; urgency=low + + * bin/apportcheckresume, debian/apport.init: integrate with pm-utils to + detect suspend/resume failures. Thanks to Steve Conklin and Andy + Whitcroft. LP: #316419. + + -- Steve Langasek Tue, 13 Jan 2009 12:54:12 -0800 + +apport (0.126) jaunty; urgency=low + + * bin/apport-chroot: If --auth is specified in "login" mode, symlink + the file into /tmp/auth in the fakechroot. This makes it much + easier to interactively debug retracing. + * bin/apport-retrace: Exit with zero for bugs which do not have a + core dump, so that it does not completely stop the retracers. + + -- Martin Pitt Fri, 09 Jan 2009 22:49:48 +0100 + +apport (0.125) jaunty; urgency=low + + * bin/apport-chroot: Exit with apport-retraces' exit status, to + propagate errors upwards to crash-digger. + * bin/apport-retrace: Do not put outdated -dbgsym comments into the + bug comments. + * Rewrite bin/crash-digger to become much more robust and easier for + retracer maintainers: + - Now designed around cron-based maintenance: start, process all + pending bugs, exit. This makes memory leaks irrelevant, and gets + rid of all the logging, daemonizing, and looping code. + - Adapt stdout/stderr reporting to be suitable for cron and + redirecting stdout to a log file. + - Use lock files to avoid overlapping instances and avoid damaging + bugs with broken retracers after crash-digger failed. + - Handle chroot upgrading, so that this does not need separate + cronjobs any more. + - Drop old -i option, replace with -D/--dupcheck which is a mode + which *only* checks duplicates of Python crashes (no fakechroot + handling). + - Mark bug as retraced after apport-chroot retrace finished + successfully; the process is robust enough now to avoid enless + loops even if retracing fails. + - Adapt test-crash-digger accordingly. + - UbuntuSpec:apport-retracer-maintenance + + -- Martin Pitt Fri, 09 Jan 2009 12:14:44 +0100 + +apport (0.124) jaunty; urgency=low + + * debian/local/ubuntu-fat-chroot: Divert touch to touch.real and + wrap it into a shell wrapper which ignores failures. Some packages + use "touch -m" which fails with EPERM on directories under + fakechroot. Also disable gconf-schemas and polkit-auth, since they + do not work in fakechroots. + * apport/crashdb_impl/launchpad.py: Allow using staging for testing. + * apport/crashdb.py, mark_retrace_failed(): Add new optional + argument "invalid_msg", intended for crashes which cannot be + retraced properly (e. g. due to outdated packages). Implement this + in apport/crashdb_impl/launchpad.py. + * bin/apport-retrace: If we do not have an usable stack trace, and + encounter outdated package versions in the crash, close the report + as invalid with an appropriate comment. (LP: #308917) + * bin/apport-retrace: Update the apt cache before looking for, and + installing packages. (Part of UbuntuSpec:apport-retracer-maintenance) + * debian/apport.default: Enable by default again for Jaunty. Let the + flood begin! + + -- Martin Pitt Thu, 08 Jan 2009 14:05:07 +0100 + +apport (0.123) jaunty; urgency=low + + * bin/apport: Do not write the report into the log file if opening + the report file failed; just log the error. + * bin/apport: Remove a previously seen report file, so that the + following creation with O_EXCL actually works. + * apport/report.py, add_proc_info(): Only try to attach + /proc/pid/attr/current if we are root. This works around Python + segfaulting regression when encountering EPERM on read() (see + LP #314065). + * apport/report.py testsuite: Use "isofs" for module license check + testing instead of "usbcore", since the latter is more likely to + get built into the kernel. + * apport/report.py, add_proc_environ(): Use "PATH=(...)" instead of + "PATH: ..." notation, to be consistent with other environment + variables. Unbreaks the apport test suite. + + -- Martin Pitt Mon, 05 Jan 2009 18:05:38 +0100 + +apport (0.122) jaunty; urgency=low + + * apport/crashdb_impl/launchpad.py: Support extra tags in the + report's "Tags:" field, and set them in the Launchpad bug. + Document this in doc/data-format.tex. Thanks to Steve Conklin for + the patch! + + -- Martin Pitt Mon, 05 Jan 2009 10:06:49 +0100 + +apport (0.121) jaunty; urgency=low + + * debian/apport.init: Drop long obsolete setting of + /proc/sys/kernel/crashdump-size. + * debian/apport.init: Make restart actually work if the default file was + changed. (LP: #292402) + * apport/report.py, add_proc_environ(): Do not include verbatim $PATH, only + classify it as "default" (does not appear at all then), "custom, + user" (/home or /tmp in $PATH), or "custom, no user". Add appropriate test + case. Update the data format documentation accordingly. (LP: #245263) + + -- Martin Pitt Mon, 08 Dec 2008 19:37:53 -0800 + +apport (0.120) jaunty; urgency=low + + * man/apport-cli.1: Fix "sytem" typo. (LP: #288977) + * apport/fileutils.py: Add new function get_options() to read + ~/.config/apport/settings. In the future, the apport-ignore.xml file will + move to this directory, too. Based on idea and initial patch from Nikolay + Derkach. + * bin/apport: Check config option "unpackaged", and if it is set to True, + create a crash dump for unpackaged programs, too. Bump apport package + dependency to python-apport for this. + * apport/ui.py: Fix regression introduced in in 0.115 for checking + successful package name determination. + * apport/report.py: Some distro portability fixes in the test suite, thanks + to Nikolay Derkach! + * Add OpenSUSE spec file, init script, and RPM packaging backend. Thanks to + Nikolay Derkach! + * apport_python_hook.py, bin/apport: Create files in a race free way to + avoid symlink attacks. Thanks to Sebastian Kramer for + finding them! + * problem_report.py test suite: Create debugging leftover which left /tmp/r + behind. + * apport/crashdb_impl/memory.py: Use example.com, not bug.net, since the + latter actually exists now. + * apport/hookutils.py: Add attach_network(), attach_alsa(), and + attach_hardware(), and add proper docstrings. Thanks to Matt Zimmerman for + the branch! + * source_linux.py hook: Use above tool functions, which greatly simplifies + the hook. + * apport/report.py: Also print exceptions from binary and source package + hooks, not just from common ones. + * apport/report.py, add_hooks_info(): Do not print an error if a source + package hook does not exist. + * apport/hookutils.py, _parse_gconf_schema(): Correctly handle bool values. + + -- Martin Pitt Wed, 26 Nov 2008 19:24:23 +0100 + +apport (0.119) intrepid; urgency=low + + * debian/apport.default: Disable Apport by default for the final release. + + -- Martin Pitt Thu, 23 Oct 2008 09:34:41 +0200 + +apport (0.118) intrepid; urgency=low + + * apport/hookutils.py: add attach_gconf() function to add non-default gconf + settings to a report + + -- Matt Zimmerman Mon, 13 Oct 2008 20:10:33 +0100 + +apport (0.117) intrepid; urgency=low + + * backends/packaging-apt-dpkg.py, is_distro_package(): Fix crash if + apt.Cache()[pkg].origins is None. (LP: #279353) + * bin/apport: Log that we are ignoring SIGABRT, since it is a common cause + of confusion. + * test-apport, create_test_process(): Fix race condition: wait until the + child process has fully execve()ed, to avoid coredumping it while it is + still running as test-apport process. + * apport/crashdb_impl/launchpad.py, update(): Set source package of a bug if + the reporter removed it and the task is against 'Ubuntu'. (LP: #269045) + + -- Martin Pitt Tue, 07 Oct 2008 16:38:06 +0200 + +apport (0.116) intrepid; urgency=low + + * Update AUTHORS and debian/copyright, Michael and Troy released their + copyright to Canonical. Properly attribute them as authors in the + respective files. + * debian/local/ubuntu-bug: Fix quoting of the command line arguments, so + that several options do not end up as one big argument when being passed + to apport-{cli,gtk,qt}. This also repairs launchpad-integration. + (LP: #260242) + + -- Martin Pitt Fri, 26 Sep 2008 10:32:45 +0200 + +apport (0.115) intrepid; urgency=low + + [ Matt Zimmerman ] + * Add apport/hookutils.py with some convenience functions for writing hook + scripts (work in progress) + * Extend ubuntu-bug to accept a path as an argument and look up the package + name + * Rename kernel_hook to kernel_crashdump (there are other kernel hooks) + * Change kernel crash report type to KernelCrash + * Fix automatix.py to not crash when automatix isn't installed (LP: #267004) + * Add bin/kernel_oops hook to capture a kernel oops (eg. via kerneloops) + + [ Martin Pitt ] + * Add AUTHORS file for collecting the list of major contributors and + copyright holders. + * apport/report.py: If we do not find a bug pattern file for the binary + package, fall back to looking for one with the source package name. + * run-tests: Provide a better error message if apport/packaging_impl.py does + not exist. + + [ Brian Murray ] + * apport/crashdb_impl/launchpad.py: Add regression-retracer tag to bugs + which seem to be a regression (duplicate, and crash happens in a later + version than the fix). (LP: #271876) + + -- Martin Pitt Thu, 18 Sep 2008 18:18:03 -0700 + +apport (0.114) intrepid; urgency=low + + [ Fabien Tassin ] + * apport/ui.py: Use preferred browser when it's recognized as a + Mozilla browser (firefox, seamonkey, flock) or Epiphany (LP: #131350) + + [ Oumar Aziz OUATTARA ] + * apport/crashdb.py: Add support for /etc/apport/crashdb.conf.d/*.conf crash + database configuration files. Document it in doc/crashdb-conf.txt. + * apport/ui.py: Support a new field "CrashDB" in apport reports which select + a non-default crash database. Document this in doc/package-hooks.txt. + + [ Martin Pitt ] + * apport/report.py: If a hook crashes with an exception, print it to + stderr, for easier debugging of hooks. + * apport/crashdb_impl/launchpad.py: If PackageArchitecture is 'all', fall + back to looking at Architecture instead of not adding a + needs-$ARCH-retrace tag at all. This prevented signal crashes originating + from e. g. Python packages from being automatically retraced. + + -- Martin Pitt Thu, 04 Sep 2008 10:51:24 +0200 + +apport (0.113) intrepid; urgency=low + + * apport-qt recommends update-notifier-kde instead of adept-notifier + + -- Anthony Mercatante Thu, 28 Aug 2008 15:02:20 +0200 + +apport (0.112) intrepid; urgency=low + + * apport/crashdb_impl/launchpad.py: Update attachment handling to current + python-launchpad-bugs API, thanks Markus Korn! + * apport/ui.py: Use gnome-panel as indicator for a running GNOME session; + 'gnome-session' now calls itself x-session-manager, which isn't useful + to tell apart session types. + + -- Martin Pitt Thu, 07 Aug 2008 17:09:49 +0200 + +apport (0.111) intrepid; urgency=low + + The "(Kernel) OOPS, I dumped it again!" release. + + * apport/ui.py: Fix test_run_report_bug_unpackaged_pid() to work with the + installed run-tests from the package as well. + * apport/crashdb_impl/launchpad.py: Ignore broken LP bug tasks instead of + crashing on them. + * apport/report.py, add_proc_info(): Report the AppArmor or SELinux context + in a new ProcAttrCurrent field, read from /proc/pid/attr/current. + Document it in doc/data-format.tex. The field will not be added if the + proc attribute cannot be read or isn't present. Thanks to Steve Beattie + for the patch and the suggestion! + * debian/local/setup-apport-retracer: Switch to intrepid. + * debian/local/setup-apport-retracer: Fix installation of python-apt. Also + install apt, to avoid library version mismatches to python-apt. + * debian/apport.default: Enable apport by default again, now that we have + working retracers. + * apport/report.py, test_add_gdb_info_script(): Use bash, not dash as test + program for core dumping; stack trace is awkwardly bad with dash, so that + the test case cannot really work any more. + * Add package-hooks/source_linux.py: Package hook for collecting kernel + related information. By Matt Zimmerman, thank you! (LP: #251441) + * debian/local/ubuntu-bug.1: Fix documentation of -p, it specifies the + binary package name, not the source. + * apport/packaging.py: Add get_kernel_package() to return the actual Linux + kernel package name; useful if the user reports a bug against just + "linux". Implement it in backends/packaging-apt-dpkg.py. + * apport/ui.py: "Do what I mean" when filing a bug against "linux" and + report it against the actual kernel package. + * debian/local/ubuntu-bug: If just one argument is given, infer -p/-P from + the type of the argument. + * apport/ui.py: Drop the PackageArchitecture field for the uploaded report + if it is equal to Architecture. Adapt apport/crashdb_impl/launchpad.py to + fall back to Architecture, and mention the change in doc/data-format.tex. + * problem_report.py, write_mime(): Add new "skip_keys" argument to filter + out keys. Add test cases. + * apport/crashdb_impl/launchpad.py: Do not write the "Date:" field on + upload(), and fetch it from the bug metadata in download(). + * apport/crashdb_impl/launchpad.py, download(): Support reading bugs with + the "--- " separator instead of "ProblemType: ". Launchpad doesn't create + bugs that way ATM, but at least we have the reading part implemented now. + * package-hooks/source_linux.py: Drop Uname, ProcVersion, and + RunningKernelVersion fields, since they are all subsumed in the + ProcVersionSignature field. + * apport/ui.py, run_report_bug(): Strip spaces from package argument. + * apport/ui.py, add_hooks_info(): Collect OS info first, then call the + package hooks, so that the linux hook actually has a chance to delete the + Uname field. + * bin/kernel_hook, test-hooks: Throw away the original kernel hook which + we never used (and got superseded by the proper source_linux.py package + hook now). Replace it with the new logic of looking for + /var/crash/vmcore{,.log} and turning that into an apport report. + * debian/apport.init: Call kernel_hook if /var/crash/vmcore exists. + (LP: #241322) + * apport/ui.py: Collect information for "ProblemType: Kernel" as well, so + that we run the package hook. Adapt test suite to cover this. + * debian/control: Bump Standards-Version (no required changes). + * gtk/apport-gtk.glade, qt4/apport-qt: Generalize notification of kernel + crash, since it now happens after a boot, not right after the BUG/OOPS. + But in the future we want to cover both cases. + + -- Martin Pitt Tue, 05 Aug 2008 18:13:24 +0200 + +apport (0.110) intrepid; urgency=low + + * apport/chroot.py: In the test suite, copy some system binaries/libraries + into a fakechroot and exercise a lot of standard shell commands (cp, ln + -s, rm, rm -r, mkdir, echo, chmod, chown, etc.) with absolute/relative + paths. This reproduces the total breakage of rm'ing, chmod'ing, and + chown'ing absolute paths in hardy fakechroots. + * bin/crash-digger: Intercept exceptions when downloading crash reports for + duplicate checking, so that the retracer does not crash on malformed bug + reports. (LP: #205178) + * apport/packaging.py: Introduce a new function enabled() which reports + whether Apport should create crash reports. Signal crashes are controlled + by /proc/sys/kernel/core_pattern, but we need that to control whether + reports for Python, package, or kernel crashes are generated. + * backends/packaging-apt-dpkg.py: Provide implementation for + PackageInfo.enabled() for Debian/Ubuntu by evaluating /etc/default/apport. + Add various test cases for different configuration files and absent files. + * apport_python_hook.py: Do not create reports if Apport is disabled (in + /etc/default/apport). (LP: #222260) + + -- Martin Pitt Sat, 17 May 2008 12:44:21 +0200 + +apport (0.109) intrepid; urgency=low + + [ Martin Pitt ] + * debian/local/setup-apport-retracer: Update for some changes in Hardy. + + [ Loic Minier ] + * apport/report.py, add_proc_info(): also strip pathnames starting with + 'cow', 'squashmnt', and 'persistmnt' to allow apport to locate the + executable pathname, additionally to 'rofs' added in 0.75. This fixes + apport for packages installed on the read-write part of the unionfs mounts + and under UME which uses different names for the mount points. Proper fix + is to rewrite the pathnames in the kernel. (LP: #224168) + + -- Martin Pitt Wed, 23 Apr 2008 14:30:03 +0200 + +apport (0.108) hardy; urgency=low + + [ Martin Pitt ] + * apport-{gtk,qt,cli}: Fix handling of file references added by package + hooks. (LP: #205163) + * backends/packaging_rpm.py: Fix dependency resolution of uname(*) in the + RPM backend. Thanks to Patryk Zawadzki! (LP: #213018) + * backends/packaging_rpm.py: Fix RPM platform parsing, thanks to Patryk + Zawadzki! (LP: #213015) + * po/de.po: Fix typo (missing space). + * debian/apport.default: Disable Apport for the final Hardy release, since + it is less useful in stable releases, and drains a lot of CPU and I/O + power on crashes. Disabling it here instead of in update-notifier/adept is + more discoverable and more centralized. + + [ Daniel Hahler ] + * bin/apport-retrace: catch the same exceptions from Report.load() like + ui.load_report() does (LP: #211899) + * Fix uncaught exceptions in apport itself (LP: #215929): + - apport/REThread.py: check if "sys" exists in the except block of + REThread.run() + - apport_python_hook.py: check if "sys" exists in the finally block of + apport_excepthook + * cli/apport-cli: Fix UnboundLocalError in ui_present_crash, which rendered + apport-cli useless (for reporting crashes) (LP: #216151) + + -- Martin Pitt Wed, 16 Apr 2008 12:24:32 +0200 + +apport (0.107) hardy; urgency=low + + * cli/apport-cli: Add translator comment for difficult string. (LP: #210948) + * Update German translations. + * po/Make{vars,file}: Remove the --language=python option again, since it + breaks extracting strings from the glade. intltool-update currently does + not seem to have a way to tag a file as "language python", so add an ugly + workaround: Create temporary .py symlinks for gtk/apport-gtk & friends, + and have intltool extract them. + * apport/ui.py: Disallow filing a bug without specifying a package or a PID. + Update debian/local/ubuntu-bug.1 accordingly (apport-cli manpage was + already correct). (LP: #210348) + + -- Martin Pitt Sun, 06 Apr 2008 11:44:38 -0600 + +apport (0.106) hardy; urgency=low + + [ Martin Pitt ] + * apport/crashdb_impl/launchpad.py: Fix spelling mistake in p-lp-bugs API + (now corrected there). + * apport_python_hook.py: Catch IndexError for invalid sys.argv[0], too. + (LP: #204940) + * apport/ui.py: Add test_run_report_bug_unpackaged_pid() test case which + reports a bug against a pid which belongs to an unpackaged program. This + reproduces LP #203764. + * apport/report.py: Drop add_hooks_info() assertion on nonexisting Package + field, return silently instead. This conforms to the behaviour of the + other add_*_info() functions and avoids nasty error handling. + * apport/ui.py: Generate proper error message when calling with -f -p PID + and PID belongs to an unpackaged program. (LP: #203764). + + [ Sebastien Bacher ] + * po/Makevars: add the --language=python xgettext option so the translations + template is correctly updated on build since cdbs is using intltool-update + directly and not the corresponding makefile target + + -- Martin Pitt Tue, 01 Apr 2008 16:02:46 +0200 + +apport (0.105) hardy; urgency=low + + * apport/crashdb_impl/launchpad.py: Ignore ValueErrors when subscribing a + team, since these are usually due to the team already being subscribed. + * apport/report.py, anonymize(): Be robust against empty user names and only + anonymize fields which can potentially contain user specific data. + (LP: #195706) + * backends/packaging-apt-dpkg.py, get_architecture(): Return 'unknown' + instead of None if package architecture cannot be determined. + (LP: #198548) + * apport/ui.py, run_crash(): Intercept other IOErrors, too (such as EISDIR) + and print out proper error message instead of crashing. (LP: #201819) + * apport_python_hook.py: If the Python script has mutilated sys.argv so that + even sys.argv[0] does not exist any more, fall back into readlink()ing + /proc/pid/exe and gracefully handle the failure of that, instead of + crashing in the crash handler (ugh). Add test case. (LP: #198183) + + -- Martin Pitt Tue, 18 Mar 2008 23:04:57 +0100 + +apport (0.104) hardy; urgency=low + + [ Martin Pitt ] + * apport/crashdb_impl/launchpad.py, get_source_version(): re-escape the + package name so that it doesn't stumble over '+' and similar characters. + * apport/ui.py tests: assert that ProcEnviron is also included into bug + reports where we do not have a PID, since having the local information is + interesting and important (and acceptable in terms of personal + information). + * apport/report.py: Split out method add_proc_environ() for getting + ProcEnviron, so that we can call it separately. + * apport/ui.py, run_report_bug(): Add ProcEnviron if we do not have a pid to + file a bug against. This way, bugs filed against packages or distro also + get locale information. (LP: #198514) + * apport/fileutils.py, mark_report_seen(): Do not crash if the file does not + exist any more, because it was removed underneath us. (LP: #199932) + * apport/ui.py, test_collect_info_exepath(): Add a tuple argument and a + CompressedValue to the test report. This reproduces LP #199349. + * apport/report.py, anonymize(): Only work on string values. (LP: #199349) + * apport/ui.py: If a report has a field "Ignore", entirely ignore the report + without even presenting an explanatory error dialog (as + "UnsupportableReason" does). Document this in doc/package-hooks.txt. + (LP: #198863) + * debian/control: Bump Standards-Version (no changes necessary). + * debian/control: Fix wrongly spelt project names (Python and GTK+). Thanks + to lintian's scrutiny. + * gtk/apport-gtk-mime.desktop.in, qt4/apport-qt-mime.desktop.in: Add a main + category. + + [ Kees Cook ] + * apport/report.py: fix module license checking logic (LP: #199927). + - nonfree_modules: being unable to find a module should not mean the + module is non-free. + - test_module_license_evaluation: check modinfo reporting. + * problem_report.py: Skip atime test case if file system is mounted noatime. + + -- Martin Pitt Thu, 13 Mar 2008 14:01:30 +0100 + +apport (0.103) hardy; urgency=low + + * bin/apport-unpack: Print error messages instead of crashing for problems + like nonexisting file names passed as arguments. (LP: #185273) + * backends/packaging-apt-dpkg.py, is_distro_package(): Explicitly check site + for "ppa", so that we do not automatically file bugs for PPA packages. + This works around Soyuz bug LP #140412 for the time being. + * apport/report.py: Add standard_title() test cases for Python crashes with + a custom message, and a custom message with newlines. The latter + reproduces LP #190947. + * apport/report.py, standard_title(): Do not rely on a fixed position of the + topmost function; use iteration and regular expression matching instead. + (LP: #190947) + * apport/ui.py, parse_argv(): Specify that --pid/-P argument must be an + integer, to avoid exceptions when it's not. (LP: #193494) + * apport/report.py: Use uname -srm, not -a, to hide the hostname. (part of + LP #192786); also use os.uname() instead of calling the system program. + * problem_report.py(): Make write() work for reports with CompressedValues. + Add test case. + * apport/ui.py: Add test case test_run_crash_anonymity() which asserts that + the crash dump does not contain strings which can identify the user, such + as the user name, login name, host name, and current directory. + * apport/report.py: Add method anonymize() which replaces user specific + strings with generic ones. + * apport/ui.py, thread_collect_info(): Call anonymize() on the report. + (LP: #192786) + * bin/apport-retrace: Only update a bug report with new attachments if it is + not a duplicate. (LP: #172792) + * bin/apport-retrace: Print out proper error message instead of an exception + if trying to do write operations to the bug tracker without specifying + a cookie file. (LP: #146423) + + -- Martin Pitt Mon, 25 Feb 2008 17:47:13 +0100 + +apport (0.102) hardy; urgency=low + + [ Martin Pitt ] + * problem_report.py: Support reading reports with legacy zlib + compression in 'retain compressed values' mode (as used nowadays by + apport when reporting a crash). Add a test case, too. (LP: #129616) + * debian/control, debian/rules: Switch from python-support to + python-central, and use 'nomove' option so that apport works during + upgrades, too. (LP: #121341) + * debian/rules: Use dh_icons instead of dh_iconcache. + * debian/apport.init: Do not stop apport in any runlevel (LSB header). + * apport/ui.py, run_crash(): Catch zlib.error on invalidly compressed core + dumps. (LP: #176977) + * apport/ui.py: Give a meaningful error message instead of crashing if the + package for a crash report is not installed any more. (LP: #149739) + * apport/ui.py: Do not include ProcCmdline in bug reports, since these are + not ack'ed by the user and might contain sensitive data. (LP: #132800) + * apport/ui.py: Add various test cases for crash reports whose packages have + been uninstalled between the crash and the report. This reproduces + LP #186684. + * apport/ui.py, load_report(): Produce proper error message if + executable/interpreter path do not exist any more. (LP: #186684) + * cli/apport-cli: Intercept SIGPIPE when calling sensible-pager, to avoid + crash when quitting it prematurely. (LP: #153872) + * bin/apport-checkreports: Print out a list of program names/packages which + have a pending crash report. (LP: #145117) + * apport/ui.py, run_argv(): Add return code which indicates whether any + report has been processed. + * cli/apport-cli: If no pending crash reports are present, say so and refer + to --help. (LP: #182985) + * apport/ui.py: Waive check for obsolete packages if environment defines + $APPORT_IGNORE_OBSOLETE_PACKAGES. Document this in the apport-cli manpage. + (LP: #148064) + + [ Daniel Hahler ] + * .crash file integration for KDE3 (LP: #177055) + - debian/apport-qt.install: install added files qt4/apport-qt-mime.desktop + and qt4/apport-qt-mimelnk.desktop + * Fixed minor warnings/errors from desktop-file-validate in + gtk/apport-gtk-mime.desktop.in and qt4/apport-qt.desktop.in (LP: #146957) + + -- Martin Pitt Wed, 06 Feb 2008 12:55:53 +0100 + +apport (0.101) hardy; urgency=low + + * debian/control: Add python-xdg dependency to apport, since apport-cli + needs it. (LP: #177095) + * apport/ui.py: Add test case for reporting a report which has been + preprocessed by apport-retrace, i. e. has a stack trace, but no core dump + any more (reproducing LP #185084). + * apport/ui.py, run_crash(): Do not reject reports which have a stack trace, + but no core dump. (LP: #185084) + * apport/report.py: Fix test_add_gdb_info_load() test case, the temporary + executable was already deleted when gdb ran the second time. + + -- Martin Pitt Wed, 23 Jan 2008 17:48:06 +0000 + +apport (0.100) hardy; urgency=low + + * bin/crash-digger: Add option --log for logging to a file, and + --pidfile/--stop for daemonization. Add test cases to test-crash-digger. + * bin/apport: Do not re-raise exceptions about failure to create the lock + file, to avoid crashing in the case that another apport instance tries to + lock at exactly the same moment. (LP: #147237) + * apport/report.py testsuite: Check that our methods get along with binary + data which turn into CompressedValue objects after loading them from a + file. This reproduces LP #148305. + * problem_report.py, CompressedValue: Add method splitlines() since we need + it very often. Add test case to test_compressed_values(). (LP: #148305) + * problem_report.py: Add test case to check that update() works and does the + right thing with binary values and overwriting. This confirms that + importing a dictionary works. + * debian/local/setup-apport-retracer: Update for hardy. + * apport/crashdb_impl/launchpad.py: get_source_info() does not work any more + due to HTML changes in Launchpad, and not showing the component any more + on /distro/+source/package. Since we do not actually need component and + release name any more, rename it to get_source_version(), fix the regular + expression to just get the version, and adapt get_fixed_version() + accordingly. + * debian/local/setup-apport-retracer: Update default apt sources to + http://ddebs.ubuntu.com. + * apport/ui.py: Robostify cleanup of forked test processes. + * apport/ui.py: Sleep for 0.5 seconds after creating the test process in the + test suite to give /proc some time to settle down. + * bin/apport: Drop evaluation of CORE_* environment variables and mandate + calling with . Drop the now obsolete + apport/elfcore.py. Adapt test-apport accordingly. + * debian/apport.init, use-local: Now call apport with %p, %s, and %c kernel + macros (since 2.6.24). Drop Edgy support from init script. + + -- Martin Pitt Fri, 21 Dec 2007 02:18:48 +0100 + +apport (0.99) hardy; urgency=low + + * cli/apport-cli, qt4/apport-qt: Fix typo 'send' -> 'sent'. + (LP: #139288) + * apport_python_hook.py: Add user info, too. Also add check for this to the + test suite. (LP: #145109) + * apport/ui.py, run_crash(): Show a proper UI error message instead of just + crashing with an exception if the crash report is inaccessible for the + invoking user. (LP: #146464) + * apport/crashdb_impl/memory.py: Implement mark_retraced(), + get_unretraced(), and get_dup_unchecked() for completeness, and define + _MemoryCrashDBTest also when not running file as __main__. This makes the + class useful for higher-level test suites. Add test cases for the new + functions. + * apport/crashdb_impl/memory.py: Support 'dummy_data' option which adds a + few dummy crashes by default. This is useful for external test suites + which cannot otherwise pre-fill the in-memory db. Add checks that this + works properly. + * bin/crash-digger: Use self.log() more consistently, and flush stdout in + log(), so that we do not lose logs on output redirection. + * Add test-crash-digger: Initial test suite for bin/crash-digger. + * apport/ui.py, run_crash(): Intercept CRC errors from the info collection + thread, which happens on broken core dumps. (LP: #132212) + * cli/apport-cli, ui_present_package_error(): Fix running of dialog, so that + reporting package problems with apport-cli actually works. (LP: #136369) + * apport/ui.py, run_crash(): Intercept ENOSPC and present a proper error + message. (LP: #145100) + * gtk/apport-gtk.glade: Fix title of upload progress window to comply to + HIG. Thanks, Bruce Cowan. (LP: #144782) + * qt4/apport-qt: Fix Unicode <-> UTF-8 conversion. Thanks, Daniel Hahler! + (LP: #148177) + * apport/ui.py: Only import xdg.DesktopEntry when a .desktop file has been + found in the affected package. This avoids the dependency on servers with + just apport-cli. Thanks, Matthias Gug! (LP: #130013) + * apport/fileutils.py: Do not fail if there are no packages installed which + have one or several .desktop files. Thanks, Matthias Gug! + + -- Martin Pitt Sun, 28 Oct 2007 18:32:07 -0400 + +apport (0.98) gutsy; urgency=low + + [ Martin Pitt ] + * debian/local/setup-apport-retracer: launchpadBugs -> launchpadbugs + (recently renamed Python package in python-launchpad-bugs). + * apport/crashdb_impl/launchpad.py, test examples: Do not duplicate to bug + #1, that generates a huge amount of spam. Use another test bug. + * apport/crashdb_impl/launchpad.py, download(): Use Bug.description_raw, + since LP mangles spaces in .description. Bump p-lp-bugs dependency. + * apport/crashdb_impl/launchpad.py, close_duplicate(): Explicitly set the + duplicate after removing attachments, since the new LP does not allow any + modification of duplicate bugs. + * bin/crash-digger: Only consolidate the duplicate DB when -i is given (i. + e. usually only on one running instance). + + [ Colin Watson ] + * Use bugs.launchpad.net for +filebug and +bugs requests. (LP: #138090) + + -- Martin Pitt Mon, 01 Oct 2007 14:35:07 +0200 + +apport (0.97) gutsy; urgency=low + + [Martin Pitt] + * problem_report.py: Coerce CompressedValue.__len__() to return an int to + work on Python 2.4, too. + * debian/local/setup-apport-retracer: Adapt ddeb apt source for the move + from ~pitti to ~ubuntu-archive. + + [Markus Korn] + * port to new python-launchpad-bugs API. + + [Daniel Holbach] + * small fixes to the port. + * debian/control: bumped python-launchpad-bugs Depends to >= 0.2.2. + + -- Daniel Holbach Tue, 04 Sep 2007 11:24:28 +0200 + +apport (0.96) gutsy; urgency=low + + * Create man pages for apport-cli, apport-chroot, and dupdb-admin. + * apport/fileutils.py, find_file_package(): Try to resolve symlinks in the + directory path. (LP: #125551) + * apport/crashdb_impl/launchpad.py, debian/local/setup-apport-retracer: Use + packaging.get_system_architecture() (which is dpkg --print-architecture on + Debian/Ubuntu) instead of uname, so that this does the right thing on lpia. + * problem_report.py, write_mime(): Use base64 encoding for gzipped + attachments, to not screw up mail servers. Thanks to Tim Yamin for this + patch! + * apport/crashdb.py: Drop the last argument (-1), since it is the default + anyway and did not yet exist on Python 2.4. + + -- Martin Pitt Tue, 21 Aug 2007 14:11:48 +0200 + +apport (0.95) gutsy; urgency=low + + * general-hooks/automatix.py: Remove hashbang, it's not an executable + script. + * apport/report.py: Support system-wide blacklisting: + /etc/apport/blacklist.d/. Add test cases. + * Add doc/README.blacklist: Document blacklist.d/, install it there in + setup.py. + * debian/rules: Blacklist wine-preloader, so that we ignore wine crashes + until an appropriate way is found to deal with them. (Point 6 of + apport-better-retracing spec.) + + -- Martin Pitt Sat, 11 Aug 2007 18:10:54 +0200 + +apport (0.94) gutsy; urgency=low + + * doc/data-format.tex: Some updates to incorporate feedback from Gnome + upstream: + - Do not talk about "Distributions" any more, but "Operating systems". + Gnome is used on non-Linux OSs, too. + - Split "DistroRelease:" field into "OS:" and "OSRelease:". + - Explicitly mention that CoreDump, StackTrace etc. can also contain + minidump output. + - Increase document version to 0.2. + * apport/report.py, obsolete_packages(): Fix crash when apt does not know an + available version of a package. (LP: #128176) + * test-apport: Add check that apport aborts immediately if another apport + instance is already running. Also test that a symlink attack on the lock + file is not possible. + * bin/apport: Abort running several apport instances at the same time, by + lockf()'ing /var/crashes/.lock and aborting on failure. (LP: #119622) + * Add bin/gcc_ice_hook: Script to create an apport report for a gcc ICE + (internal compiler exception). Add test cases to test-hooks, and ship it + in the 'apport' package. (LP: #125551) + * run-tests: In 'local' mode, only explicitly run the apt/dpkg + implementation instead of backends/*, since the RPM ones don't have tests + yet. + * apport/crashdb.py: Add a second optional parameter to upload() to specify + an upload progress callback function. Adapt the declarations in the + Launchpad and Memory implementations, too. + * apport/crashdb_impl/launchpad.py, upload(): Pass upload progress callback + handler to launchpadBugs.storeblob.upload(), which supports this since + version 0.2~39. Bump dependency to it accordingly. + * apport/ui.py, file_report(): Define an upload progress callback handler, + pass it to the crashdb upload(), and feed ui_set_upload_progress() with + some actual data. (LP: #91521) + * problem_report.py: Remove support for reading bz2 compressed binary data. + That was only relevant during edgy's development cycle. + * apport/report.py, test_add_proc_info(): Fix determination of /bin/zgrep + interpreter. + * problem_report.py: Switch encoding of binary values from bare zlib to + proper gzip format, since this is much more useful when reusing the + compressed value. Retain support for zlib-only reports. Add test cases for + both old and new encodings, and adapt the other test cases for the new + format. Update doc/data-format.tex accordingly. + * problem_report.py, write(): Add new permitted 'binary' argument value + 'compressed', which retains gzip compressed binary values instead of + unpacking them transparently. Add test cases. + * problem_report, write_mime(): Eliminate unnecessary usage of StringIO. + * problem_report, write_mime(): Make function work for compressed binary + values. Add test case. + * apport/report.py, add_gdb_info(): Make function work if CoreDump is a + compressed value. + * apport/ui.py: Load crash report with keeping compressed binaries. This + avoids loading the entire uncompressed core dump into memory, and avoids + recompressing it all over again for generating the crash database upload + MIME document. This greatly speeds up crash reporting, too. (LP: #98562) + + -- Martin Pitt Tue, 31 Jul 2007 21:32:00 +0200 + +apport (0.93) gutsy; urgency=low + + * apport/crashdb.py: Set sqlite connect timeout to two hours, instead of the + default 5 seconds. Previously, one retracer always crashed when the other + was consolidating the database. + * bin/dupdb-admin, command_dump(): Correctly interpret empty version strings + as 'fixed in unknown verrsion', not 'unfixed'. + * apport/crashdb_impl/launchpad.py: Fix typo in bug comment string. + * apport/crashdb_impl/launchpad.py: Add function get_source_info() which + parses out release, version, and component from + https://launchpad.net/$DISTRO/+source/$PACKAGE. + * apport/crashdb_impl/launchpad.py, get_fixed_version(): If a bug is fixed, + return the current version (as approximation of the version where the bug + was fixed), instead of an empty string (which meant 'fixed in unknown + version'). [apport-crash-duplicates spec] + + -- Martin Pitt Wed, 25 Jul 2007 17:04:27 +0200 + +apport (0.92) gutsy; urgency=low + + * bin/crash-digger: Do not crash if duplicate db is locked when attempting + to consolidate it. This happens often because in the DC we have two + parallel instances (for amd64 and i386). + * Move ubuntu-fat-chroot from bin/ to debian/local/, since it is so heavily + Ubuntu specific. + * debian/local/ubuntu-fat-chroot: Use diversions for the binaries we want to + disable, so that chroot upgrades do not trash the modifications. + * debian/local/setup-apport-retracer: launchpad-crash-digger -> + crash-digger. + * bin/crash-digger: Add option -i/--arch-indep-dupcheck to explicitly enable + duplicate checking of arch-independent crashes like Python exceptions. We + only want to process them on one architecture to avoid scattering the + duplicate database. + * apport/crashdb_impl/launchpad.py, get_unfixed(): Search for 'apport-crash' + tag, not 'apport'. + * bin/apport-unpack: Fix format string in error message. + * apport/ui.py, __init__(): Intercept ImportError, which can happen for + crashes during system upgrades. (LP: #124354) + * Add general-hooks/automatix.py: Refuse to send problem reports if + automatix is installed. + * doc/package-hooks.txt: Do not document UnsupportableReason, since it does + not make sense to set it in package hooks (it is checked before calling + the hooks). Hooks should use UnreportableReason only. + * apport/ui.py, test_run_crash_package(): Check that 'Package' problem + reports collect additional information, too. + * apport/ui.py, collect_info(): Collect additional information for 'Package' + problem reports, too. + * Revive preloadlib/: + - Remove PIPE_CORE #ifdefs and make them the default. We do not need to + support the Edgy kernel patches in this version any more. + - Install signal handler for SIGABRT, too. + - Read core ulimit, pass it to apport in CORE_REAL_RLIM, and set it to + zero for the program, since we do not actually want the kernel to write + core files when we pipe the core dump to apport. + - test-apport: Pass APPORT_REPORT_DIR to the manually called apport + instance in the memory clipping test; otherwise it'll write into + /var/crash/, which we do not consider in library mode. + * apport/crashdb_impl/launchpad.py, __init__(): Only do the "download bug + #2" hack if we actually have an authentication cookie. Thus, do it only on + the retracing servers, not on the client side. (LP: #125142) + * apport/report.py, crash_signature(): Generate a signature for one-line + Python tracebacks, too. This sometimes seems to happen, e. g. LP#124588. + (LP: #125020) + * apport/crashdb_impl/launchpad.py, update(): Set bug importance to Medium + if retracing was successful. (LP: #106379) + + -- Martin Pitt Tue, 24 Jul 2007 21:50:34 +0200 + +apport (0.91) gutsy; urgency=low + + * bin/apport: Remove code that supported the Edgy kernel way of core dump + passing. Also factorize the CORE_REAL_RLIM evaluation, since it is likely + to change in the near future. + * apport/crashdb_impl/launchpad.py, close_duplicate(): Delete some + attachments, as specified in apport-crash-duplicates spec, and make the + bug public afterwards. + * apport/crashdb_impl/launchpad.py, close_duplicate(): If the master bug is + already duped to yet another bug, mark the bug to that one instead of the + master. + * apport/crashdb.py: Split out duplicate_db_last_consolidation() for getting + the date (or seconds since) the last consolidation, so that we can use it + externally. + * apport/crashdb.py: Add duplicate_db_change_master_id() to change the + master ID of a crash. Add test case to apport/crashdb_impl/memory.py. + * Add bin/dupdb-admin: Initial version of duplicate db CLI app; can dump the + db, display consolidation state, and change master bug IDs for now. Ship + it in apport-retrace. + * apport/crashdb.py, duplicate_db_last_consolidation(): Fix timedelta + seconds calculation to actually take the days into account, too. + * bin/crash-digger: Fix dumping of dup db after consolidation. + * apport/ui.py: + - test_run_report_bug_package(): Add test case for calling the UI in bug + filing mode with an invalid package name. + - run_report_bug(): Do not crash on invalid package name, generate an + error message instead. (LP: #123644) + * apport/fileutils.py, mark_report_seen(): Do not crash if the file has + already been deleted underneath us. (LP: #122347) + * apport/ui.py, run_report_bug(): Do not crash if the target process runs as + a different user. Print a proper error message instead. Add test case + test_run_report_bug_noperm_pid(). (LP: #121121) + * apport/fileutils.py, likely_packaged(): Ignore /var/lib/schroot. Add test + case. (LP: #122859) + * apport/ui.py, open_url(): Intercept weird race condition for os.close() + trying to close an already invalidated fd. (LP: #123180) + + Merge the fedora branch, thanks to Will Woods : + + * Add apport.init.fedora: Fedora specific init script. + * Add apport.spec: RPM build recipe. + * Add backends/packaging_rpm.py: Partial implementation of the packaging + backend for RPM which applies to all RPM-based distros. + * Add backends/packaging_fedora.py: Concrete packaging backend + implementation for Fedora. + * apport/elfcore.py: Classes for parsing general ELF files, and information + from core dumps. + * bin/apport: Fall back to reading signal number and PID directly from the + core file (via elfcore.py) if CORE_SIGNAL and CORE_PID are not defined (i. + e. when running on a non-Ubuntu kernel). + * crashdb.conf: Add stanzas for Fedora and a 'debug' database which uses the + 'memory' crashdb implementation. + + -- Martin Pitt Sat, 14 Jul 2007 15:08:35 +0200 + +apport (0.90) gutsy; urgency=low + + * apport/ui.py, load_report(): Catch IOError, too. LP: #118827 + * Merge apport-cli package into apport itself. The program itself is just 3 + kB compressed, and it's not worth wasting another 34 kB compressed + changelog for this tiny bit. + * apport/report.py, obsolete_packages(): Use the version comparison from the + packaging system instead of just testing for inequality. This catches zero + epochs. Thanks to Will Woods ! + * apport/ui.py: Add option -c/--crash-file to run the UI with a particular + crash file (which can be anywhere) instead of all pending crashes in + /var/crash/. + * Add xdg-mime/apport.xml: XDG MIME type definition for .crash files. + * Add gtk/apport-gtk-mime.desktop.in: Link text/x-apport MIME type to + apport-gtk -c, so that .crash files can be reported with Gnome. + * Add debian/apport.links: Install an icon symlink for the MIME type. + * apport/ui.py: Do not ask the initial "Do you want to report this?" + question when being invoked with --crash-file. + * po/POTFILES.in: Add missing cli/apport-cli. + * po/de.po: Updated for apport-cli. + * cli/apport-cli: Add option for keeping the report file without sending it, + and to display its path. This is for sending the report later, copying + it from a server to a workstation with internet connection, etc. + * apport/crashdb_impl/launchpad.py: Simplify _subscribe_triaging_team(), now + that we do not differ between main and universe policies any more. + * apport/report.py: Support another hook directory + /usr/share/apport/general-hooks/ for scripts which are run for every + problem report. This was requested for adding e. g. AppArmor logs, etc. + Add test cases. + * Add debian/apport.dirs again to ship that hook directory. + * doc/package-hooks.txt: Document the general hooks. + + -- Martin Pitt Tue, 10 Jul 2007 21:10:19 +0100 + +apport (0.89) gutsy; urgency=low + + Implement private crash bug handling, according to + https://wiki.ubuntu.com/CrashReporting: + + * apport/crashdb_impl/launchpad.py: + - upload(): If we have an Ubuntu bug, mark it as private and only + subscribe 'apport' (the 'Apport retracing service' user). + - Add function _subscribe_triaging_team() which subscribes + ubuntu-crashes-main for source packages in Ubuntu main or restricted, or + ubuntu-crashes-universe for other packages. It does not touch non-Ubuntu + bugs, since these are not marked private by default and are outside of + the scope of this spec. + - update(), _mark_dup_checked(): Call _subscribe_triaging_team(). + - Note: This entire spec is a gross hack, and Ubuntu derivatives do not + benefit from it at all. We have to live with this until LP grows a real + crash database. + - get_distro_release(): Make this function work with private bugs, too, by + using p-lp-bugs' safe_urlopen(). + + Bug fixes: + + * apport/crashdb_impl/launchpad.py: Revert simplification change of 0.85: + BugList returns a set of strings, not integers; due to non-identity they + do not work with the usual set operations. + * apport/crashdb_impl/launchpad.py: Add function get_source_component() to + query Launchpad for the component of a given distribution and source + package. (This will be required for implementing crash-reporting). + * backends/packaging-apt-dpkg.py, _search_contents(): Package list is + actually comma separated, only take the first item. This fixes retracing + of e. g. #124139. + * backends/packaging-apt-dpkg.py, _search_contents(): Fix package name + parsing for non-main components. This fixes retracing of e. g. #124111. + * apport/report.py, _read_maps(): Revert ptrace hack when maps cannot be + read. maps file is now protected based on process ownership, not ptracing. + * apport/crashdb.py, apport/crashdb_impl/launchpad.py, + apport/crashdb_impl/memory.py: Remove official interface + mark_dup_checked(), as it should only be an internally used function. Add + report parameter, since we will need it there in the future. Remove + explicit call from bin/crash-digger and instead change check_duplicate() + to call it on its own. + * apport/crashdb_impl/launchpad.py, download(): Replace dodgy parsing of + fields from the description with proper code, so that multi-line fields + are read correctly, too. + + -- Martin Pitt Fri, 06 Jul 2007 11:19:22 +0200 + +apport (0.88) gutsy; urgency=low + + * po/de.po: Update. + * backends/packaging-apt-dpkg.py, _search_contents(): Do not check the + return value of zgrep. It usually errors out with 'stdout: broken pipe' + when called with -m1. + * bin/crash-digger: Mark a bug as retraced if DistroRelease: cannot be + determined. Those are bugs apport cannot handle. + * backends/packaging-apt-dpkg.py, get_source_tree(): Call apt-get source + with --assume-yes to not block on VCS confirmations. + * apport/crashdb.py: Add interface mark_retrace_failed(). Implement it in + apport/crashdb_impl/launchpad.py. + * bin/apport-retrace: If retraced report does not have a crash signature, + mark it as failed with above new function. Bump python-apport dependency + for this. + * apport/crashdb_impl/launchpad.py, update(): Delete CoreDump.gz attachment + if the retrace was successful (i. e. if the report has a crash signature). + * apport/ui.py, test_run_crash(): Set the message box title, text, and + severity as assertion message if the run_crash() test fails, so that you + know why it fails. This usually happens if libc6 or another dependency of + the test crash is out of date. + * gtk/apport-gtk.glade: Mark string as translatable. LP: #119621 + + -- Martin Pitt Tue, 03 Jul 2007 21:38:05 +0200 + +apport (0.87) gutsy; urgency=low + + * apport/report.py: + - test_gen_stacktrace_top(): Add test case for unwinding a Gnome assertion + (g_logv(), g_assert_warning() and similar), see LP #123462. + - _gen_stacktrace_top(): Generalize for unwinding multiple functions and a + set of function names, and add the Gnome assertion ones. + + -- Martin Pitt Mon, 02 Jul 2007 11:00:44 +0200 + +apport (0.86) gutsy; urgency=low + + * test-apport: Check that apport does not create reports for emtpy core + dumps. + * problem_report.py: Introduce a fourth optional parameter "fail_on_empty" + to file pointer tuples which causes write() to raise an IOError if no data + was read. Add test cases. + * bin/apport: Enforce non-emptyness of CoreDump. + * problem_report.py: Add test case for delayed piping of data passed as file + object pointers. This was supposed to explain the reason for getting bugs + with zero-byte core dumps, but already works correctly. + * apport/report.py, check_ignored(): round the mtime to an int (just like + mark_ignore() does), to not get wrong results on file systems that support + subsecond file timestamps. This fixes running the test suite on the live + CD. + * test-apport: Clarify assertion message if /var/crash is not empty. + + -- Martin Pitt Thu, 28 Jun 2007 19:14:36 +0200 + +apport (0.85) gutsy; urgency=low + + * apport/crashdb_impl/launchpad.py: BugList.bugs is already a set, simplify + code a bit. + * debian/control: Add dpkg-dev dependency to apport-retrace, for getting + dpkg-source. + * apport/report.py, crash_signature(): Allow ':' and '~' as part of function + names to cover C++. Adapt test case to cover this. + * apport/report.py test suite: Do not assume that /bin/zgrep uses /bin/sh, + it was recently changed to use bash. Directly read the interpreter from + the shebang line. + * bin/apport-chroot, command_upgrade(): Supply -y to 'apt-get upgrade' also + in verbose mode. + * bin/apport-chroot, command_upgrade(): Run 'apt-get clean' before + regenerating the chroot tarball. + * backends/packaging-apt-dpkg.py, get_dependencies(): Fix crash when + encountering a virtual package. LP: #122274 + * apport/report.py, obsolete_packages(): Do not consider virtual packages as + obsolete. + * apport/crashdb_impl/launchpad.py: Do a bogus call to Bug() in the ctor. + This initializes python-launchpad-bugs to use a cookie for the urlopen in + BugList, so that get_unretraced() and get_dup_unchecked() return private + bugs, too. This works around LP #122126. + + -- Martin Pitt Mon, 25 Jun 2007 16:38:43 +0200 + +apport (0.84) gutsy; urgency=low + + * apport/crashdb.py: Add new abstract methods: + - get_unretraced() and mark_retraced(id) to get a list of crashes that + need to be retraced and chalk them off. + - get_dup_unchecked() and mark_dup_checked() to get a list of crashes that + need to be checked for being a duplicate and chalk them off. This is + aimed at crashes which do not need retracing, such as unhandled Python + exceptions. + * apport/crashdb_impl/launchpad.py: Implement above methods for launchpad + (moving the code from bin/launchpad-crash-digger). + * apport/crashdb_impl/launchpad.py: Set "need-duplicate-check" tag for + Python crashes. + * apport/crashdb_impl/launchpad.py, download(): Fetch Traceback.txt, too, so + that we can do duplicate checking for Python crashes. + * bin/launchpad-crash-digger: Drop Launchpad specific code and replace it + with calls to above new functions. Rename to bin/crash-digger. Also rename + all 'cookie' to 'auth' (as happened with the other applications earlier). + * bin/crash-digger: Do duplicate checking for needs-duplicate-check crash + bugs (such as Python crashes). + * bin/apport-retrace, bin/crash-digger: More language cleanup; we should + stop talking about 'bugs' and use 'crash' consistently. + + -- Martin Pitt Thu, 14 Jun 2007 19:50:24 +0200 + +apport (0.83) gutsy; urgency=low + + * apport/crashdb.py: Separate abstract from implemented functions. + * apport/crashdb.py, apport/packaging.py, apport/ui.py: Use + NotImplementedError instead of Exception in the abstract methods. + * apport/packaging.py: Add interface compare_versions() for comparing + package version numbers. + * backends/packaging-apt-dpkg.py: Implement compare_versions() using + apt.VersionCompare(), add some test cases. + * apport/report.py: Fix typo: 'none' -> 'None'. + * apport/chroot.py: Do not include /usr/local/lib and /usr/lib in + LD_LIBRARY_PATH, just /lib, so that we still use the libc from outside, + but e. g. libxml2 from inside the chroot. + + https://blueprints.launchpad.net/ubuntu/+spec/apport-crash-duplicates: Merge + crash-dups branch, which implements automatic crash duplicate detection: + + * apport/crashdb.py: Add methods for crash duplicate detection. + * apport/crashdb_impl/memory.py: Change internal data management to track + fixed version and duplicates. + * apport/crashdb_impl/memory.py: Add a test suite for all methods, including + the duplicate detection API of the base CrashDatabase (since it is + much easier to test it here, on an actual implementation). + * debian/pyversions: Bump minimal Python version to 2.5, since this starts + providing the sqlite3 module. + * apport/crashdb_impl/launchpad.py: Implement new methods required for crash + duplicate detection. get_fixed_version() does not approximate version + tracking yet; it just returns '' for fixed bugs (which means 'fixed, but + unknown version'). Bump python-launchpad-bugs dependency for this to + ensure the availability of Bug.mark_duplicate(). + * bin/apport-retrace: Add option --duplicate-db which specifies the path to + the duplicate sqlite database and enables duplicate detection. + * Abin/apport-chroot: Add option --duplicate-db. If a file is given, symlink + it into the chroot and pass --duplicate-db to apport-retrace. + * bin/launchpad-crash-digger: Add --duplicate-db and pass it to + apport-chroot. + * apport/crashdb.py: Track last run of duplicate_db_consolidate() in an + extra table and add a method duplicate_db_needs_consolidation() which + returns True if the last run was more than a given number of seconds ago. + Add test cases to apport/crashdb_impl/memory.py. + * bin/launchpad-crash-digger, fill_pool(): Check whether the duplicate + database needs consolidation (i. e. updating the bug states to the reality + in the bug tracker) and if so, trigger it. + + -- Martin Pitt Wed, 13 Jun 2007 13:09:57 +0200 + +apport (0.82) gutsy; urgency=low + + * Add bin/ubuntu-fat-chroot: Script to install a set of commonly needed + packages into a minimal Ubuntu chroot (as created by apport-chroot). This + requires some hacking of postinst and /usr/sbin/ files in between the + installation stages and thus deserves a script on its own. + * apport/packaging.py: + - Add "uninstalled" option to get_file_package(). If set to True, this + will do an expensive search of files/packages which are not installed. + - Add interface "set_mirror(URL)" for functions which need to retrieve + packages and data from distribution mirrors. + * backends/packaging-apt-dpkg.py: Implement "uninstalled" option and + "set_mirror(URL)", add test cases. + * bin/apport-retrace: Use "uninstalled" option now to install packages and + corresponding -dbgsyms for uninstalled files mentioned in ProcMaps + (Point 1 of apport-better-retracing spec). Bump python-apport dependency. + * apport/packaging.py: Add interface get_available_version(package). + * backends/packaging-apt-dpkg.py: Implement get_available_version(), add + shallow test case. + * apport/report.py: Add function obsolete_packages() to return packages in + Package: and Depends: which are not up to date. Add test cases. + * apport/ui.py, thread_collect_info(): For crashes, call obsolete_packages() + and set UnreportableReason: if there are any (Point 2 of + apport-better-retracing spec). + * apport/ui.py, thread_collect_info(): call standard_title() and add it to + the report as 'Title' field. This is useful if reporters modify the + default title (per request of Brian Murray, thanks). Add test case. + * apport/ui.py: Fix declaration of the test suite's + ui_set_upload_progress(). Funny that this has never been triggered before. + * apport/report.py, add_gdb_info(): Split out StacktraceTop generation into + separate funtion _gen_stacktrace_top(), so that we can test it separately. + * apport/report.py, _gen_stacktrace_top(): Step back from the crashed + program's own signal handlers, since those are generally not useful for + the purposes of StacktraceTop and only impede duplicate matching + (Point 4 of apport-better-retracing spec). Add various test cases. + * apport/report.py: Add method crash_signature() to calculate an unique + identifier of a signal or Python crash, to be used for duplicate + detection. Add various test cases. + * apport/packaging.py: Add interface get_source_tree() to fetch and unpack a + source package to a given directory, optionally specifying a particular + version. + * backends/packaging-apt-dpkg.py: Implement get_source_tree(). This has a + rather crude 'call apt-get source and guess about directories' + implementation until python-apt learns about doing this directly and more + elegantly (see LP #118788). + * bin/apport-retrace: Add gen_source_stacktrace() and a few helper functions + to construct a field 'StacktraceSource' with the source code around the + affected lines in the stack trace (as available). (Point 5 of + apport-better-retracing spec). + * apport/crashdb_impl/launchpad.py, update(): Attach StacktraceSource to the + bug if it exists. + * apport/crashdb_impl/launchpad.py: Check PackageArchitecture for 'all', to + not set a retracer tag 'need-all-retrace'. + * test-apport: Clarify assertion failure message when an unexpected core + dump is present. + * apport/report.py, get_module_license(): Do not iterate over Popen.stdout, + use communicate() instead. The latter is already fixed to not trip over + SIGINTR. (LP: #118965) + + -- Martin Pitt Fri, 08 Jun 2007 07:47:04 +0200 + +apport (0.81) gutsy; urgency=low + + * apport/report.py: Remove '[apport]' default bug title prefix. (LP: #94819) + * apport/crashdb_impl/launchpad.py: Tag new bugs with + 'apport-'. This replaces the former '[apport]' prefixing. + * debian/local/setup-apport-retracer: Specify a path in '.' command and + use sh again. Yay for me needing three attempts before actually RTFMing + how '.' works (which is really nasty and strange IMHO). + * bin/apport-chroot: Fix symlinks before repackaging the chroot tarball in + 'install' and 'installdeb' modes. + * debian/local/setup-apport-retracer: Install python-libxml2 and python-apt. + * bin/launchpad-crash-digger: Supply --auth instead of the deprecated + --cookie to apport-chroot. + * bin/apport-chroot: Fix identifier name in command_retrace(). + * debian/local/setup-apport-retracer: Set APPORT_CRASHDB_CONF to the local + crashdb.conf. + * bin/apport-chroot: Unset APPORT_CRASHDB_CONF for login and retrace. + * bin/launchpad-crash-digger: Check the release of a bug and whether we have + a chroot for it before untagging it. This avoids loosing tags for bugs we + do not yet have a working retracer chroot for. + * bin/apport-retrace: Do not abort with an exception if package installation + fails. Give a proper error message instead and point to -u. (LP: #115681) + * apport/crashdb_impl/launchpad.py, update(): Create a temporary directory + and use proper file names for the new attachments. With TemporaryFile(), + attachment file names ended up as ''. (LP: #115347) + * apport/report.py, add_os_info(): Add field 'NonfreeKernelModules' which + lists loaded kernel modules which do not have a FOSS license. This is + particularly helpful for quickly checking for restricted graphics drivers. + (LP: #103239) + * apport_python_hook.py: Move the apport.* imports into the try: block and + move the likely_packaged() test to the top, to avoid importing + apport.report and creating a Report object for non-packaged scripts. This + makes the entire code more efficient and robust against errors in the + apport modules. (LP: #109955) + * apport/report.py, add_gdb_info(): Intercept OSError from gdb invocation + (which might be segfaulting itself) and just do not put any gdb output + into the report. The automatic retracers can try their luck again. + (LP: #112501) + * bin/apport-retrace: Fix handling of packages which are still known to + /var/lib/dpkg/status, but do not have an apt record any more; treat them + like virtual packages and just issue a warning instead of falling over. + (LP: #107474) + * Add doc/data-format.tex: Documentation of the structure, encoding, and + standard keys of the Apport report file format. [apport-for-upstreams + blueprint] + * Add doc/Makefile: Build and clean rules for generating data-format.pdf. + * debian/rules, setup.py: Call doc/Makefile and install the PDF + documentation. Add texlive-latex-recommended build dependency for that. + + -- Martin Pitt Thu, 24 May 2007 19:39:12 +0200 + +apport (0.80) gutsy; urgency=low + + Collect all Launchpad specific bits in a separate class and provide an + abstract base class. This will greatly help for getting upstream acceptance + and the possibility of automatically forwarding crashes upstream + (apport-for-upstreams specification): + + * Add apport/crashdb.py: Abstract crash database interface. This also offers + a factory function get_crashdb() which reads a configuration file to find + the default crash database to be used. + * Add ./crashdb.conf: Crash database configuration file, for Ubuntu on + Launchpad. Modify setup.py and debian/python-apport.install to ship it in + python-apport. + * Add apport/crashdb_impl/memory.py: Simple in-memory implementation of + crash database interface for testing. + * Add apport/crashdb_impl/launchpad.py: Launchpad implementation of crash + database interface. + * apport/ui.py: Drop LP specific bits and move towards new CrashDatabase + interface. + * apport/ui.py, test suite: Do not overwrite file_report() any more, but + use the memory CrashDatabase. This will test the actual file_report() + implementation and allows the test suite to check the precise value of + opened URLs. + * apport/{report,ui}.py: Move UserInterface.create_crash_bug_title() and its + test cases to Report.standard_title(). It is much more appropriate there + and can be used in the retracer as well. + * bin/apport-retrace: Drop LP specific bits and move to CrashDatabase + interface. Remove the --remove-tag option, we really should not have it + here; remove it from man/apport-retrace.1 as well. + * bin/apport-chroot: Drop --remove-tag option here, too. + * bin/apport-chroot: Drop LP specific bits and move to CrashDatabase + interface. + * bin/launchpad-crash-digger: Remove retracing tag directly instead of + passing --remove-tag to apport-chroot. This is a much cleaner design and + avoids infinitely looping on some weirdly failing retraces. + * debian/control: Bump some python-apport dependencies for the API changes. + + Some debranding: + + * setup.py: Use apport wiki home page for 'url'. + * Remove 'X-Ubuntu-Gettext-Domain' from *.desktop.in, since langpack.mk will + add it automatically now. + * *.desktop.in: Remove 'in Ubuntu' from comment. + * cli/apport-cli, qt4/apport-qt: Generalize window titles. + + Other fixes: + * po/de.po: Update. + * debian/local/setup-apport-retracer: Revert back 'source' to '.' and use + bash instead of sh. POSIX sh does not seem to have a 'source' command. + + -- Martin Pitt Mon, 21 May 2007 19:25:31 +0200 + +apport (0.79) gutsy; urgency=low + + * debian/local/setup-apport-retracer: Fix '.' bashism, replace it with + 'source'. + * problem_report.py, write_mime(): Drop preamble argument, replace it with + an extra_headers dictionary. This is much easier to evaluate on clients. + * apport/ui.py: Convert to new write_mime() interface from above. This + finally automatically tags bugs with need-$ARCH-retrace. Bump + p-problem-report dependency of python-apport for this. + * apport/report.py: Change example URLs in the testsuite from launchpad to + an artificial ones to avoid the impression that it is LP specific. + * backends/packaging-apt-dpkg.py: Formally make this a subclass of + apport.packaging.PackageInfo. + * debian/control: Use code.lp.net instead of bazaar.lp.net VCS URL. + * bin/kernel_hook: Fix/improve the collected information: + - Read /proc/modules instead of lsmod. + - Fix lspci argument: -n instead of -m. + - Add /proc/cmdline. + * debian/rules: Use langpack.mk for updating the .desktop files. + * Add po/Makevars to specify the domain, to make intltool figure out the + gettext domain automatically. + * bin/kernel_hook, ./test-hooks: Do not rely on /proc/version_signature any + more, it's gone in the gutsy kernel. + + -- Martin Pitt Mon, 21 May 2007 15:55:10 +0200 + +apport (0.78) gutsy; urgency=low + + * apport/packaging.py, backends/packaging-dpkg.py: Add new interface + is_distro_package(package) which verifies the origin of a given package. + Move the dodgy hack from apport/ui.py to the backend, where it belongs to. + Also add a test case. + * debian/control: Add python-apt dependency to python-apport. + * debian/control: Remove debianutils dependency, it's essential. + * Drop backends/packaging-dpkg.py. It had some hackish usage of python-apt + anyway, since some things just cannot be figured out with dpkg alone. + Since we have to give up on that idea, implement a new clean packaging + backend 'packaging-apt-dpkg.py' which now uses python-apt and dpkg in a + clean way. + * apport/report.py, add_gdb_info(): Fix crash when Stacktrace could not be + created. (LP: #107853) + * ./test-apport: Check that crashes create a core dump (with proper ulimits) + when an unseen crash report exists already. This reproduces LP #105976. + * bin/apport: Create core dump file if aborting because an unseen crash + report already exists. (LP: #105976) + * apport/ui.py: Add a comment for translators. (LP: #104703) + * apport/ui.py, load_report(): Also catch zlib.error on invalid reports. + (LP: #103547) + * apport/report.py: Add method has_useful_stacktrace() to determine whether + the stack trace can be considered useful. The current heuristic is to + consider it useless if it either is shorter than three lines and has any + unknown function, or for longer traces, a minority of known functions. Add + test cases. + * gtk/apport-gtk, qt4/apport-qt, cli/apport-cli: Do not offer 'reduced + report' option if the stack trace is useless. (LP: #87430) Bump the + python-apport dependencies of the frontend packages to ensure that we have + has_useful_stacktrace(). + + -- Martin Pitt Sat, 5 May 2007 17:53:42 +0200 + +apport (0.77) gutsy; urgency=low + + * apport/report.py: Replace any() call with a list comprehension to work + with Python < 2.5. (LP: #104864) + * apport/report.py: Move the ctypes import to the one place where we + actually need it, and do not entirely fail if they do not exist (such as + in Python 2.4). It is only required for non-default Feisty kernels anyway. + (LP: #107662) + * apport/chroot.py: Fix test suite to work with Python 2.4's tarfile module + output format. + * debian/local/setup-apport-retracer: Generalized some feisty specific + bits, set default release to gutsy. + + -- Martin Pitt Mon, 23 Apr 2007 12:22:17 +0200 + +apport (0.76) feisty; urgency=low + + * Move python_hook.py out of the apport module to apport_python_hook.py, so + that it does not inflict the expensive import of all apport related + modules to every python program. Adapt module prefixes accordingly. + (LP: #105764) + * setup.py, debian/python-apport.install: Install apport_python_hook.py into + the python-apport binary package. + * apport/ui.py test suite: Unset locale related environment variables so + that the tests which check strings are not invalidated by translations. + + -- Martin Pitt Thu, 12 Apr 2007 11:47:50 +0200 + +apport (0.75) feisty; urgency=low + + * apport/report.py, add_proc_info(): Chop off /rofs/ prefix from + ExecutablePath, so that crashes work on the live system, too. Arguably a + kernel bug, but probably too hard to fix at this time. (LP: #102909) + * backends/packaging-dpkg.py, get_modified_files(): Ignore empty lines in + broken .md5sums file rather than crashing on them. (LP: #102906) + + -- Martin Pitt Wed, 4 Apr 2007 21:51:28 +0200 + +apport (0.74) feisty; urgency=low + + * debian/apport-{gtk,qt}.install: Do not install .desktop files for now, + until we get a proper guided bug reporting. + * problem_report.py, write_mime(): Do not re-compress keys which already end + in .gz. Add test cases. + * test-hooks: Add a (dodgy) test case for calling package_hook on an + uninstalled package. After all, this is very likely to happen for + installation errors. This reproduces #97636. + * backends/packaging-dpkg.py, get_source(): Add a similarly dodgy fallback + to apt if the queried package is not installed. This needs to be + generalized and cleaned up later, but now is the time for unintrusive + small patches. (LP: #97636) + * test-apport: Do not fail on non-empty gdb stderr if it only consists of a + single warning (as happens on powerpc). + * apport/report.py, test_check_interpreted(): Run gedit test on an actually + existing file, reproducing the interpreter confusion reported in #102056. + * apport/report.py, _check_interpreted(): Add a whitelist of common + interpreters and check ExecutablePath against it. (LP: #102056) + * apport/ui.py: Ignore SystemError exceptions from apt, which happen on + badly formatted source.list entries. (LP: #98901) + * apport/ui.py: Fix crash on None candiateOrigin from the apt cache object. + (LP: #98961) + * gtk/apport-gtk.glade: Add window titles to progress and details dialogs. + (LP: #97640) + + -- Martin Pitt Wed, 4 Apr 2007 14:44:08 +0200 + +apport (0.73) feisty; urgency=low + + * problem_report.py, write(): Allow a third optional argument in tuple + values, which specify a maximum file size. Above it, the entire key gets + removed. Add testsuite checks for all boundary cases. + * bin/apport: Limit core dump size to 75% of usable RAM + (MemFree+Cached-Writeback). This should avoid trashing people's boxes hard + on huge core dumps. Bump dependencies on python-problem-report. Create an + expensive, but realistic check for this in test-apport. + (LP: #71560) + * apport/ui.py, run_crash(): If a signal crash report does not have a core + dump, explain that the computer has too little memory for an automatic + analysis/report of the crash. Add test suite check. + + -- Martin Pitt Thu, 29 Mar 2007 23:38:23 +0200 + +apport (0.72) feisty; urgency=low + + [ Martin Pitt ] + * bin/apport-chroot, command_create(): Install gpgv. + * bin/apport-retrace: Fix error handling in fetch_unpack(). + * Move apport-retrace.1 manpage from package apport to apport-retrace. Bump + Conflicts/Replaces accordingly. + * bin/launchpad-crash-digger, apport/ui.py: Remove the special case + 'powerpc'->'ppc' and use need-powerpc-retrace uniformly. + * debian/control: Add XS-Vcs-Bzr: header. + * apport/ui.py: Fix wrong parameter name in help message. + * Another grammar fix, thanks to Brian Murray! + + [ Michael Hofmann ] + * debian/local/ubuntu-bug: Try to use apport-cli, if we do not have a + $DISPLAY, or neither Gnome nor KDE are running. + * debian/control: Recommend elinks, since it is the only text browser so far + that works with Launchpad (see #59510) + * Add debian/apport-cli.README.Debian: Describe how to integrate + apport-checkreports and apport-cli into .bashrc for crash notification on + servers. + * qt4/apport-qt: Fix undefined symbol in ui_present_package_error(). + (LP: #97282) + + -- Martin Pitt Thu, 29 Mar 2007 11:41:39 +0200 + +apport (0.71) feisty; urgency=low + + * cli/apport-cli, qt4/apport-qt: Fix bad grammar 'some minutes'. + (LP: #95296) + * problem_report.py, write_mime(): Add optional 'preamble' parameter. Add + test case. + * apport/ui.py, upload_launchpad_blob(): Set need-$ARCH-retrace tag in MIME + preamble. Bump p-problem-report dependency. (LP: #94790) + * bin/apport-retrace: In verbose mode, display the path of currently + extracting deb. + * bin/apport-retrace: Do not fall over errors of dpkg -x (which happens e. + g. on udev, where it cannot unpack /dev, since this is a symlink to the + real /dev). Merely print out a warning about it. + * apport/ui.py, run_report_bug(): Ignore ENOENT from add_proc_info(). This + happens if the user closes the application prematurely, so that /proc/pid + does not exist any more. Add test case. (LP: #95954) + * backends/packaging-dpkg.py, get_modified_files(): Ignore lines in .md5sums + files which contain a NUL byte. This Should Not Happen™, but nevertheless + did. (LP: #96050) + * apport/ui.py, doc/package-hooks.txt: Check for a field + "UnreportableReason: " and display an information box that the + current crash cannot be reported because of . Add test case. + Document the new field. + * apport/ui.py: Check package origin, compare it to DistroRelease:, and + report crash as unreportable if they do not match. This particularly saves + the user from uploading large reports for e. g. opera crashes, and avoids + filing Ubuntu bugs from Debian installations. (LP: #75513) + + -- Martin Pitt Mon, 26 Mar 2007 18:01:24 +0200 + +apport (0.70) feisty; urgency=low + + [ Martin Pitt ] + * bin/apport-retrace: Add option --remove-tag to remove a Launchpad bug + tag. This is intended for an automatic Malone crash retracing system. + * debian/control: Bump python-launchpad-bugs dependency to ensure that we + have Bug.[gs]et_metadata(). + * man/apport-retrace.1: Add documentation for --confirm and --remove-tag. + * bin/apport-chroot: Add option --remove-tag and pass it to apport-retrace. + * apport/chroot.py, fix_symlinks(): Convert chroot path prefixed absolute + symlinks to relative symlinks to avoid fakechroot's weird handling of + absolute symlinks. + * Add bin/launchpad-crash-digger: Daemon for watching out for + need-$ARCH-retrace tagged Ubuntu bugs in Launchpad and calling + apport-retrace on them. + * bin/apport-retrace: Mangle bug comment with StacktraceTop to not contain + invalid UTF-8, to avoid getting Internal Server Errors from LP. + * debian/local/setup-apport-retracer: Install libc6-i686{,-dbgsym} into an + x86 chroot, to get sane x86 backtraces for crashes in libc. + * debian/local/setup-apport-retracer: + - Unpack and install python-launchpad-bugs locally if the package is not + installed. + - Link launchpad-crash-digger into the retracer's bin/ dir. + * run-tests: Run tests with python's -tt flag to catch whitespace errors. + * Replace tabs with spaces in all Python files. (LP: #93561) + * Remove trailing white space in all Python files. + * apport/report.py, add_proc_info(): Do not regard symlinks to executables + as interpreted scripts any more (such as Debian alternatives). Add test + case. (LP: #94732) + * problem_report.py: Add new method get_new() which returns a set of all + keys which have been added since load() or construction. Add test cases. + * problem_report.py: Add optional parameter only_new to write(), which + writes only the get_new() keys. Add test case. + * apport/ui.py: Remember currently processed report file and update it with + the added information, so that it becomes useful for local evaluation, + too. Bump python-problem-report dependency to ensure write()'s only_new + availability. (LP: #94678) + * apport-chroot: Add forgotten sys.exit(1) after printing the error message + about an invalid chroot specification. + * apport/ui.py, run_crash(): Check for a field "UnsupportableReason: " + and display an information box that the current configuration cannot be + supported because of , instead of processing and reporting the + crash. Add test case for this workflow. With special regards to our + Firefox crash triagers who want to get rid of the hundreds of + flash-related crashes. :) + * apport/report.py, add_hooks_info(): Use execfile() instead of + __import__(), since package names might conflict with module names already + imported into apport's namespace. Also search for hook named after the + source package name (prefixed with 'source_'). Add test cases. + * bin/apport-chroot: When specifying --save for login, only save the tarball + if the exit status is 0. + * bin/apport-chroot, create: Install /usr/sbin/policy-rc.d to disable init + scripts. + * bin/apport-chroot: Fixed command function selection to not abort with + 'unknown command' if the DistroRelease: was unknown. + * bin/apport-retrace: Replace --no-purge with --no-dpkg. With this option, + do not call dpkg --unpack any more, but dpkg -x, to avoid any fchmod() and + other calls which cause problems in fakechroots. + * bin/apport-retrace: Fix ordering of version numbers in warning message. + * doc/package-hooks.txt: Add some examples, document source package hook. + + [ Kees Cook ] + * apport/report.py, add_proc_info(): If reading /proc/pid/maps fails, + ptrace() the target process to make it readable (proposed security + improvement in future kernels). + * bin/apport-retrace: Fix crash for packages unknown to the apt cache. + * apport/report.py, add_gdb_info(): Limit maximum backtrace depth to 2000 to + avoid infinitely looped stacks and gdb crashes. (LP: #94455) + This also caps the maximum size of information that we add to reports. + (LP: #92653) + * bin/apport-retrace: Add option -R/--rebuild-package-info, so that + apport-retrace works on unprocessed crash dumps in /var/crash. + * Some grammar corrections. + * Add package-hooks/source_apport.py: Package hook for apport itself. + Include /var/log/apport.log and the status of files in /var/crash. + + [ Michael Hofmann ] + * Add cli/apport-cli, setup.py, debian/apport-cli.install, debian/control: + Add command line user interface. + * apport/ui.py, format_filesize(): Use MiB and GiB instead of MB and GB; + these are the official units. Adapt test cases. + * apport/ui.py, collect_info()/file_report(): Do not raise an exception on + KeyboardInterrupt in the subthreads. + * apport/ui.py, open_url(): Do not use gtk.MessageDialog(), but + ui_error_message(), and fix error passing so that the message is + displayed in the parent thread. + * apport/ui.py, open_url(): Check that $DISPLAY is set before considering + the KDE/Gnome web browsers. + + -- Martin Pitt Mon, 26 Mar 2007 09:41:03 +0200 + +apport (0.69) feisty; urgency=low + + * apport-chroot: Add command 'installdeb' to conveniently install a bunch of + .debs into a chroot. + * apport-chroot: Fix 'login' and 'upgrade' commands to not require + specifying a chroot map when giving a chroot tarball path as argument. + * test-apport: Check that core dumps are written for packaged programs as + well, if ulimits want them. (Test for #92029) + * bin/apport: Call write_user_coredump() for packaged program crashes and + SIGABRT as well. (LP: #92029) + + -- Martin Pitt Mon, 19 Mar 2007 17:37:23 +0100 + +apport (0.68) feisty; urgency=low + + [ Michael Hofmann ] + * qt4/apport-qt: Fix taskbar entry, remove an unused method. + * qt4/error.ui: Fix icon spacing. + + [ Martin Pitt ] + * apport-retrace: Add option --confirm to display the retraced stack traces + and ask for confirmation before uploading them as LP bug attachments. + (LP: #91878) + * apport-chroot: Add option --confirm-attach; if given, call apport-retrace + with --confirm. + + -- Martin Pitt Thu, 15 Mar 2007 00:05:18 +0100 + +apport (0.67) feisty; urgency=low + + * debian/local/setup-apport-retracer: Add apt sources for restricted, + universe, and multiverse, too. + * po/de.po: Update from Rosetta. + * apport/report.py: Remove undefined call to error_log() in + _command_output(), replace it with raising proper exceptions. + * bin/apport-retrace: Fix 'numer' typo. (LP: #91680) + * test-apport: Check that non-packaged executables generate a core dump on + SIGABRT, too (test case for bug #92029). + * bin/apport: Move check for ignoring SIGABRT below the core dump file + writing for non-packaged binaries. (LP: #92029) + * gtk/apport-gtk.glade: + - Remove titles from the progress windows to comply with Gnome HIG and not + repeat the text content. + - Improve wording a bit. + - LP: #92114 + * gtk/apport-gtk{,.glade}: Fix signal handler name of the Cancel button in + the upload progress dialog, so that it actually works. (LP: #92115) + + -- Martin Pitt Wed, 14 Mar 2007 17:34:57 +0100 + +apport (0.66) feisty; urgency=low + + * Remove apport/MultipartPostHandler.py, this functionality moved to + python-launchpad-bugs now. Add a dependency to that package. + * apport/ui.py, upload_launchpad_blob(): Use the shiny new + launchpadBugs.storeblob.upload(). + * bin/apport-retrace: Attach retraced stack traces back to the Launchpad bug + report if no other output option is given (This corresponds to the + in-place editing when a report file is specified). Add option --cookie to + specify a Mozilla-style cookie file for the necessary Launchpad + authentication. + * man/apport-retrace.1: Document above apport-retrace changes. + * bin/apport-chroot: Add --cookie option: temporarily symlink cookie into + the chroot and pass it to apport-retrace in retrace mode. + + -- Martin Pitt Sat, 10 Mar 2007 15:01:57 +0100 + +apport (0.65) feisty; urgency=low + + * debian/local/setup-apport-retracer: + - Replace grep-dctrl with grep call, since grep-dctrl is not installed in + all the DC chroots. + - Do not download apport source from archive.u.c., instead require that + this script lives in the unpacked apport source tree. + * bin/apport-chroot: Use apt-get options -y and --allow-unauthenticated when + installing additional packages. + * bin/apport-chroot: Handle --extra-package for 'upgrade', too, to provide a + simple way of adding a package to an existing chroot tarball. + * debian/local/setup-apport-retracer: Create tarball chroots by default. + It only imposes a negligible overhead, and sharing unpacked directories + with multiple people is just too brittle. + * bin/apport-retrace: Add option --no-purge to not purge unpacked packages + after retracing. This is (only) useful with temporarily unpacked chroots, + since it's only a waste of time there. + * bin/apport-chroot: Call apport-retrace with --no-purge when retracing in a + chroot tarball. + * apport/chroot.py: Add fix_symlinks() method to remove the chroot root + directory prefix from symbolic links; they prevent function of tarball + chroots and moving around directory chroots. Add test case. + * bin/apport: Fix symlinks after creating and upgrading a chroot. + * bin/apport-chroot: Add option --save to update a tarball after logging + in to it. + + -- Martin Pitt Sat, 10 Mar 2007 21:21:25 +0100 + +apport (0.64) feisty; urgency=low + + * bin/apport-chroot: Add 'login' command. + * bin/apport-chroot: Install apport-retrace into a newly created chroot. + * Add debian/local/setup-apport-retracer: Script to install local versions + of apport, debootstrap, fake{,ch}root libraries, and a feisty apport + fakechroot. This works OOTB on ronne's amd64 and i386 feisty chroots. The + script is not shipped in any package yet, but it's convenient to ship it + in revision control and in the source. + * apport/report.py, _check_interpreted(): When calling an interpreter with a + script name as argument, set ExecutablePath to the script instead of the + interpreter. Add test case. (LP: #88794) + * apport/report.py, search_bug_patterns(): Catch all exceptions from + urlopen(), not just IOError. Sometimes this fails with funnier errors. + (LP: #89589) + * bin/apport-retrace: Give some additional explanation when installing + packages fails. (LP: #89916) + * apport/fileutils.py, get_all_{system_,}reports(): Fix file access race + condition. (LP: #89977) + * bin/apport-retrace: Add option -p/--extra-package to install an additional + package for retracing. May be specified multiple times. Document new + option in man/apport-retrace.1. (LP: #90077) + * bin/apport-chroot: Add a similar option -p/--extra-package and install + those in the 'create' command and simply pass it to apport-retrace in the + 'retrace' command. (LP: #90077) + * bin/apport-chroot: Add a -v/--verbose option. + * bin/apport-retrace: Do not complain about missing ddebs for Arch: all + packages. + + -- Martin Pitt Tue, 6 Mar 2007 16:20:41 +0100 + +apport (0.63) feisty; urgency=low + + New feature: fakechroot support for apport-retrace + + * bin/apport-retrace: + - Simplify program design and throw away the complicated debug symbol + sandbox generation, along with the -d and -C options. Instead, directly + install the missing packages and ddebs with apt. This makes the tool more + suitable for running in chroots and has often been requested anyway. + - Add option -u/--unpack-only which causes additionally installed packages + to be unpacked without being configured and purged again after + retracing. This allows apport-retrace to work under fakechroot and has + the nice side effect of speeding up package installation (we do not care + about configuration for retracing anyway). + * man/apport-retrace.1: Update description for the new behaviour, drop + documentation of the -d and -C options, and add documentation of -u. + * Add apport/chroot.py: Class for representing and working with chroots; + this uses the fakeroot and fakechroot libraries when being called as + non-root. + * Add bin/apport-chroot: CLI frontend for doing various things with + chroots (including fakeroot/fakechroot support from the Chroot class). For + now, this implements: + - create a chroot (tarball or directory) + - dist-upgrade a particular or all chroots + - apport-retrace a bug or Apport report file + * setup.py: Ship apport-chroot in scripts directory. + * Add a new package apport-retrace which ships apport-retrace and + apport-chroot and carries all the heavier dependencies (binutils, + python-launchpad-bugs, python-apt, etc.). Drop the latter two dependencies + from the apport package. This allows us to install the apport-retrace + package in fakechroots (not possible with apport itself) and avoid + unnecessary dependencies on normal desktop installations. + + -- Martin Pitt Mon, 5 Mar 2007 11:20:36 +0100 + +apport (0.62) feisty; urgency=low + + * apport/ui.py, collect_info(): Use REThread instead of Thread and raise + exceptions from it, so that errors during info collection actually become + visible. + * apport/report.py, add_proc_info(): Check that ExecutablePath actually + exists, so that invalid values from transient error conditions are ignored + (such as '/usr/bin/gnome-panel\x00\x00\x8b (deleted)'). + * apport/packaging.py: Add interface get_system_architecture() to return the + system architecture in the distro specific notation. This can differ from + get_architecture(package) on multiarch platforms such as amd64. + * backends/packaging-dpkg.py: Implement get_system_architecture() to return + dpkg --print-architecture, add a shallow test case. + * apport/report.py, add_package_info(): Rename key 'Architecture:' to + 'PackageArchitecture:' for clarity. + * apport/report.py, add_os_info(): Add system architecture as + 'Architecture:' field. + * apport/ui.py, create_crash_bug_title(): Append warning about non-native + package if package architecture does not match the system's one. + * All test suites: Remove redundant word 'behaviour' from test descriptions. + * test-hooks: Run tests on installed hooks in /usr/share/apport by default + and add a '--local' switch to test the hooks in the source tree instead. + Use this option in run-tests. + * apport/report.py, test_add_proc_info(): Change the python script test + so that it does not depend on being run in the source tree. + * run-tests: Add a 'local' command line option which runs tests on the files + and modules in the build tree. Run tests on system files/modules by + default. + * setup.py, debian/apport.install: Ship test-hooks, test-apport, and + run-tests in /usr/share/apport/testsuite/, so that the full test suite can + be run in the installed system. + * gtk/apport-gtk.desktop.in: Only show in Gnome and Xfce. + * qt4/apport-qt.desktop.in: Only show in KDE. + + -- Martin Pitt Thu, 1 Mar 2007 10:43:29 +0100 + +apport (0.61) feisty; urgency=low + + * bin/apport: + - Kernel 2.6.20-9 now sets CORE_REAL_RLIM to -1 instead of not setting it; + handle this case correctly. (LP: #87065) + - Add forgotten multiplication of CORE_REAL_RLIM with 1024, since ulimit + sets kB, not bytes. + + -- Martin Pitt Tue, 27 Feb 2007 16:06:11 +0100 + +apport (0.60) feisty; urgency=low + + * gtk/apport-gtk.glade: Reintroduce window titles. Since the crash + notifications are like alerts, title have been removed recently to comply + with Gnome HIG standards, but then the user will get 'nameless window' + buttons in the task bar. Let's have the smaller evil then. (LP: #87164) + * apport/packaging.py: Add get_architecture() interface for determining the + architecture of a particular package (which might not match the overall + system architecture on multiarch-capable systems, e. g. an i386 Firefox + package installed on amd64). + * backends/packaging-dpkg.py: Implement get_architecture() and add test + case. + * apport/report.py, add_package_info(): Add Architecture: field. + (LP: #87424) + * apport/ui.py: Already mark report as seen when we load it, not just in the + information collection thread. That way, reports will only be shown once + on systems which have /var/crash mounted noatime, too. (LP: #85809) + * apport/fileutils.py, mark_report_seen(): If os.utime() fails, and opening + the report file for reading does not change the atime (happens with + noatime mount option), don't throw an exception, just delete the report. + (other aspect of LP: #85809) + * qt4/apport-qt: Wrap gettext() into an unicode(str, 'UTF-8') call, + otherwise all non-ASCII unicode strings are broken. (LP: #87757) + + -- Martin Pitt Mon, 26 Feb 2007 20:55:40 +0100 + +apport (0.59) feisty; urgency=low + + * apport/report.py: Check that interpreter options are discarded in + test_check_interpreted_script(). This replicates bug #87005. + * apport/report.py, _check_interpreted_script(): Filter out interpreter + command line options. This should make the detection of interpreted + scripts more robust. (LP: #87005) + * test-apport, check_crash(): Differ between expecting the program dumping + core and finding a core dump on disk, because this is not equivalent any + more with core pipelining. + * bin/apport: Write core files into a process' cwd if the process' ulimit + requests and permits it and the crashes process is not packaged, so that + developers get happy again. Test this behaviour with various ulimits in + test-apport. + * test-apport: Check that the core file written by apport is valid. This + uncovers kernel bugs like #87065 + * problem_report.py test suite: Use assertAlmostEqual() when comparing stat + times, since they are floats on some systems. + * apport/report.py, add_gdb_info(): + - Remove all the initial gdb output, which gets rid of the duplicated #0 + line. + - Replace some stray tabs with spaces. + - Thanks to Kees Cook for this! + + -- Martin Pitt Thu, 22 Feb 2007 19:52:52 +0100 + +apport (0.58) feisty; urgency=low + + * qt4/apport-qt.desktop.in move to System menu + + -- Jonathan Riddell Tue, 20 Feb 2007 11:35:17 +0000 + +apport (0.57) feisty; urgency=low + + * apport/ui.py: Intercept ENOMEM and fail gracefully; there is little else + we can do at that point, and there is no point in presenting a crash + report for this. (LP: #85155) + * apport/ui.py: Ignore KeyError when deleting the CoreDump field on sending + a reduced report. This Should Not Happen™, but nevertheless did. + (LP: #86083) + * gtk/apport-gtk, qt4/apport-qt: Intercept ImportError for the non-builtin + Python modules. This usually happens for crashes when there is a + dist-upgrade active and some Python packages have not been configured yet. + (LP: #86007) + * apport/ui.py: If the problem report does not apply to a packaged program, + and we have an ExecutablePath, mention it in the error message for easier + debugging. + * apport/python_hook.py: Resolve symbolic links in ExecutablePath. + (LP: #85529) + * apport/ui.py, open_url(): Remove debugging print statement again, now + that we tracked down bug #83974. + + -- Martin Pitt Mon, 19 Feb 2007 14:40:29 +0100 + +apport (0.56) feisty; urgency=low + + * apport/ui.py, open_url(): When being invoked as root, call gnome-open or + firefox as root through sudo instead of dropping our uid/gid and calling + it normally. The latter does not work for Firefox for some mysterious + reason. Thanks to Mika Fischer for this trick. (LP: #81207) + * Add debian/local/ubuntu-bug.1: Manpage for ubuntu-bug. Add it to + debian/apport.manpages. + * qt4/apport-qt: Add some missing features that are present in the GTK UI: + - Do not show details by default, add a button to show them. + - Add complete/reduced bug report radio buttons. + - Thanks to Michael Hofmann for this! + + -- Martin Pitt Thu, 15 Feb 2007 14:59:07 +0100 + +apport (0.55) feisty; urgency=low + + * Add debian/local/ubuntu-bug: Check for a running KDE or Gnome session, + availability of apport-gtk and -qt, and open the appropriate GUI in bug + filing mode. This makes it convenient for shell users and is also required + for proper Firefox 'Report a bug...' menu integration (see bug #85041). + * debian/apport.install: Install ubuntu-bug to /usr/bin. + * gtk/apport-gtk: Generously add some gtk.main_iteration() calls to avoid + hanging dialogs, since we do not have a main loop. + * apport/ui.py: Do not silently ignore exceptions while uploading data to + Launchpad, but intercept them and display their message in the error + dialog. (Part of LP: #84992) + * apport/ui.py: Switch from edge.launchpad.net to production launchpad.net, + since the necessary bits are now there. (LP: #84992) + + -- Martin Pitt Wed, 14 Feb 2007 13:37:52 +0100 + +apport (0.54) feisty; urgency=low + + * bin/apport: Re-enable, now that our kernel has been fixed to pipe complete + core dumps to us. + + -- Martin Pitt Tue, 13 Feb 2007 09:33:38 +0100 + +apport (0.53) feisty; urgency=low + + * apport/ui.py, open_url(): Remove some accidentally left-over debugging + junk. + * gtk/apport-gtk: Process pending GTK events after hiding the info + collection window to avoid a hanging dead dialog. + * gtk/apport-gtk: Do not count the lines of fields with binary data. This + particularly avoids long delays with huge core dumps. (LP: #81979) + * apport/ui.py, open_url(): Print URL to stdout, so that we can debug the + weirdness in #83974. + + -- Martin Pitt Mon, 12 Feb 2007 16:57:05 +0100 + +apport (0.52) feisty; urgency=low + + * apport/report.py: Fix hook directory to be + /usr/share/apport/package-hooks/, not /u/s/apport/. + * Add doc/package-hooks.txt: Document per-package hooks, ship in package + apport. + * Add debian/apport.dirs: Ship package-hooks/ directory. + * gtk/apport-gtk, qt4/apport-qt: Fix detection of binary data so that the + CoreDump is not displayed as incomprehensible gibberish any more. + * Add qt4/apport-qt.desktop.in and add it to POTFILES.in. + * bin/apport-retrace: --verbose can now be specified multiple times to + increase verbosity and debug package installation. Also, fix some quoting + bugs. Thanks to Kees Cook for this! + * qt4/apport-qt: Fix restart button handling. (LP: #84202) + * qt4/apport-qt: Do not try to call splitlines() on a report value that is a + file reference; just display the reference instead. (LP: #84196) + * bin/apport: Disable for now, since the current kernel produces cropped + core dumps and thus we get totally useless crash reports + + -- Martin Pitt Fri, 9 Feb 2007 18:58:08 +0100 + +apport (0.51) feisty; urgency=low + + New feature: Qt4 GUI implementation: + + * Added qt4/: Qt4 implementation of the abstract user interface. Thanks to + Michael Hofmann for that! + * debian/copyright: Add Michael as copyright holder. + * setup.py, debian/control, debian/apport-qt.install: Packaging bits for + apport-qt. + * Move translations from apport-gtk to apport, since they are shared between + frontends. Add appropriate Conflicts/Replaces (we don't strictly need it + here because we strip them anyway, but we need that for the moving icon + anyway). + * Move icon from apport-gtk to apport, since it is/can be shared between + frontends. + + Improvements: + + * Replaced old apport.png icon stolen from bug-buddy with nice SVG one. + Thanks to Troy Sobotka for this! + * debian/copyright: Add Troy as copyright holder for the icon. + * bin/apport-retrace, man/apport-retrace.1: Document that report can now be + a LP bug number. + + -- Martin Pitt Thu, 8 Feb 2007 20:01:12 +0100 + +apport (0.50) feisty; urgency=low + + * gtk/apport-gtk.glade: Fix 'prolem' typo. + * bin/apport-retrace: Use python-launchpad-bugs to create a Report object + from a given Launchpad bug number (given as argument instead of the report + file path). Add appropriate p-l-b dependency. + * gtk/apport-gtk: Mark '(binary data)' string as translatable. + + -- Martin Pitt Thu, 8 Feb 2007 15:15:47 +0100 + +apport (0.49) feisty; urgency=low + + * gtk/apport-gtk.glade: Fix s/send/sent/ typo. Closes: LP#83061 + * apport/ui.py, create_crash_bug_title(): Cope with odd Tracebacks that are + shorter than three lines. Add test case from the bug. Closes: LP#83556 + * apport/python_hook: Do not create a report if the binary is ignored. Add + test case. Closes: LP#83566 + * gtk/apport-gtk: Do not save/alter crash dialog title any more, it's empty + now. + * apport/ui.py, open_url(): Check the user's session for + ksmserver/gnome-session to decide whether to prefer kfmclient or + gnome-open. Also, only call Firefox directly if gconf's prefered browser + is actually Firefox. Closes: LP#82007 + + -- Martin Pitt Tue, 6 Feb 2007 18:33:15 +0100 + +apport (0.48) feisty; urgency=low + + New feature: Infrastructure for reporting kernel Oopses: + + * Add bin/kernel_hook and ship it in /usr/share/apport. The kernel can call + this on an Oops. Add a test suite for it to test-hooks. + * apport/ui.py: Add support for reporting ProblemType: Kernel reports, and + add test suite for the workflow. + * gtk/apport-gtk{,.glade}: Add implementation for ui_present_kernel_error(). + + Improvements: + + * Merged various apport-retrace improvements from Kees' branch: + - Add various options to override some report fields with local values. + - Add --verbose option and be quiet by default. + - Read ProcMaps for additional library dependencies, to also catch + libraries loaded at runtime (plugins). + - Set correct debug file directory when starting an interactive gdb + session with -g. + * Add gtk/apport-gtk.desktop.in: Desktop file for calling apport-gtk in + 'file a distro bug' mode, to be displayed in gnome-panel's System menu + (see bug-reporting-tool spec). Also add a Makefile to do the + intltool-merge dance, add it to POTFILES.in, and ship it in + debian/apport-gtk.install. + * bin/apport: Call add_os_info(), so that we get architecture information + even for 'naked' reports which didn't go through UI enrichment. + * Add ./test-hooks: Test suite for the various package hooks shipped with + apport. Test the package problem hook for now. + + Bug fixes: + + * debian/control: Add missing python-apt dependency to apport + (apport-retrace needs it). Thanks to Kees Cook for noticing. + * debian/control: Add gdb dependency to python-apport. + * backends/packaging-dpkg.py test suite: Verify that packages returned by + get_dependencies() actually exist. This catches the 'chops off first + letter of package name sometimes' bug. + * backends/packaging-dpkg.py, _init_status(): Add missing space to Depends: + field format in dpkg-query call. This fixes the chopped-off first letters + in the 'Dependencies' report field. + * setup.py: Remove version attribute, we do not update and use it anyway. + * apport/ui.py: Do not crash if Package: specifies a nonexisting package. + Display a proper error message instead. Add test_run_crash_errors() test + case. + * apport/report.py, add_package_info(): Fix crash when the first dependency + is not installed. Closes: LP#82561 + * gtk/apport-gtk.glade: Remove window titles in alert dialogs to comply with + Gnome HIG. Closes: LP#83123 + + -- Martin Pitt Mon, 5 Feb 2007 12:19:35 +0100 + +apport (0.47) feisty; urgency=low + + * apport/report.py, add_hooks_info(): Only use first part of 'Package:', + there might be a version number and a changed files list which we must not + propagate to the import statement. Closes: LP#82566 + + -- Kees Cook Wed, 31 Jan 2007 15:37:11 -0800 + +apport (0.46) feisty; urgency=low + + * debian/control: Bump dependencies to python-apport due to recent changes + in expected return values in some UI functions. Closes: LP#82267 + * bin/package_hook: Remove erroneous 'import apport.packaging', which + shadows the packaging variable in the apport package. This unbreaks the + package problem hook. Closes: LP#82297 + + -- Martin Pitt Wed, 31 Jan 2007 07:51:24 +0100 + +apport (0.45) feisty; urgency=low + + New feature: Infrastructure for package install/upgrade failures: + + * Add bin/package_hook: Script for creating a report for a package + installation/upgrade failure. It receives a package name, a number of log + files, and an ErrorMessage: from stdin. This will be called from e.g. + dist-upgrader. + * setup.py, debian/apport.install: Ship package_hook. + * apport/ui.py: If ProblemType is 'Package', call a new function + self.ui_present_package_error() instead of presenting a crash. Add test + suite checks for the package error report workflow. + * apport/ui.py, create_crash_bug_title(): Create default bug title for + package reports. Add various test cases. + * gtk/apport-gtk{,.glade}: GTK implementation of ui_present_package_error(). + + New feature: Maintain a per-binary blacklist to inhibit apport crash reports + until the binary changes. Closes: LP#79408 + + * apport/report.py: Add new Report methods check_ignored() and mark_ignore() + to check for/set ignore list entries. Add test cases. + * apport/ui.py: Add another return value of ui_present_crash() to specify + whether or not to blacklist the current crash's executable. Check workflow + of both responses in the test suite. + * gtk/apport-gtk{,.glade}: Add a blacklist checkbox to the crash + notification dialogs. + * bin/apport: Do nothing if the current crash is blacklisted. + * test-apport: Test blacklisting. + + Bug fixes: + + * gtk/apport-gtk: Fix return code for restarting the application ('reopen' -> + 'restart'). Closes: LP#81422 + * test-apport: Adapt to new core_pattern kernel interface mode: + - Check core_pattern instead of the obsolete crashdump sysctl to determine + whether or not apport is running. + - Give apport max. 10 seconds to complete. The current kernel reaps the + crashed process as soon as writing the core dump to the pipe is + finished, but apport still needs to write the report file. + - Do not EXFAIL the test for crashes in nonwriteable cwd any more, since + it is now supposed to work (we do not write a core dump to the disk any + more). + * run-tests, use-local: Adapt to new core_pattern kernel interface. + * apport: Improve logging of exceptions, include environment variables. + * apport/report.py test suite: Use gdb to generate a test core dump, do not + rely on kill(SIGSEGV) and the kernel to do it (since we now use a pipe in + core_pattern). + * backends/packaging-dpkg.py: Fix return value of get_modified_files() if + dpkg .list file is missing. + * apport/report.py, add_package_info(): Do not produce stray empty lines for + uninstalled alternative dependencies. + * apport/report.py: Fix test_add_gdb_info_script() to not leave behind a + stray gzip process which randomly blocks stdin. Closes: LP#78421 + * backends/packaging-dpkg.py: Do not read the dpkg status in the + constructor, but lazily initialize it when actually calling a query + function. This avoids imposing the dpkg-query overhead for programs that + import the apport package without doing package queries (such as any + Python program under Ubuntu, due to the Python crash hook). + * apport/ui.py, create_crash_bug_title(): + - Do not crash on an empty StacktraceTop. Closes: LP#81677 + - Do not mention an unknown function name ('??') in the bug title; + instead, use the topmost function with a known name, or leave it out + at all. + - Add test cases for these situations. + * apport/report.py, _get_ignore_dom(): Do not throw an error for an empty + ignore list file. + + Code cleanups: + + * apport/report.py test suite: Refactorize generation of test crash program + and core dump generation. + * Consistently use 'in'/'not in' instead of find() for substring searches. + * Changed the packaging backend import, so that its methods can now be + accessed at apport.packaging instead of apport.packging.impl. + + -- Martin Pitt Sun, 28 Jan 2007 12:34:05 +0100 + +apport (0.44) feisty; urgency=low + + Some more 'Need for Speed' optimizations: + + * backends/packaging-dpkg.py, _check_files_md5(): Also accept a md5sum + string in addition to a md5sum file. + * backends/packaging-dpkg.py, get_modified_files(): Compare package file's + ctime and mtime against the package list file's mtime and only md5sum the + files that are newer. This drastically reduces the amount of md5suming + (usually to zero) and thus speeds up the information collection. + * backends/packaging-dpkg.py: Use a single hackish 'dpkg-query --show *' + as a portable variant of 'cat /var/lib/dpkg/status' to pre-fill the status + cache with all packages instead of calling dpkg -s on every single package + we query. This changes the time for figuring out dependencies and their + versions from 'unbearable for many packages' to 'barely noticeable'. + + New feature: per-package apport hooks to collect additional information: + + * apport/report.py: Add method add_hooks_info() which executes a function + add_info(report) from /usr/share/apport/.py. Also add + appropriate test cases. This provides per-package hooks for apport. + * apport/ui.py: Call add_hooks_info() in the information collection thread. + + Bug fixes: + + * apport/report.py: Add some more test cases for _check_interpreted() for + Python scripts. + * apport/python_hook.py: Check for a correct ExecutablePath in + test_general(). + * apport/python_hook.py: Use fileutils.likely_packaged() instead of + checking for /tmp and home, so that we ignore stuff in /usr/local, too. + Closes: LP#81244 + * apport/python_hook.py: If we figure out an ExecutablePath which is not + actually an executable, do not create a report. This particularly affects + interactive python sessions where sys.argv[0] is empty and thus + ExecutablePath ends up being the current directory. Add test cases. + Closes: LP#81237 + + -- Martin Pitt Wed, 24 Jan 2007 17:16:04 +0100 + +apport (0.43) feisty; urgency=low + + * apport/ui.py: Add method create_crash_bug_title() to construct a + reasonable standard bug title for crash reports, so that the automatic + duplicate detection actually has a chance to work. Also add test cases for + various signal crashes and an unhandled Python exception. + * apport/ui.py, file_report(): Submit a default bug title for crash reports. + Closes: LP#79657 + + -- Martin Pitt Tue, 23 Jan 2007 16:26:40 +0100 + +apport (0.42) feisty; urgency=low + + New feature: https://wiki.ubuntu.com/ApportImprovements (kernel interface + change): + + * bin/apport: Support calling without arguments, to support new semantics + agreed in the ApportImprovements spec: macro values (in particular, pid + and signal number) are passed as environment variables. + * preloadlib/libapport.c: Simulate new kernel behaviour described above. + * debian/apport.init: Set the kernel's core_pattern sysctl to pipe to apport + if the edgy-style 'crashdump-helper' sysctl helper does not exist. + + Bug fixes: + + * bin/apport-retrace: Beautify error message when report file is not + accessible. Closes: LP#79568 + * apport/ui.py: Fix crash in the bug pattern search thread if we could + not determine a package name. Closes: LP#77872 + * bin/apport: Only unlink the core dump if it still exists. Closes: LP#80866 + * gtk/apport-gtk.glade: Fix expand/fill attributes so that the expander gets + all the space when resizing the window. Closes: LP#80987 + * problem_report.py, write_mime(): Make sure that multi-line values that go + to the summary are terminated with a newline. + * apport/ui.py: Fix error message invocation for reporting cloakroom upload + failure. + * problem_report.py, write_mime(): Fix off-by-one comparison of the 'inline + text' treshold, so that apport's StacktraceTop field appears in bug + summaries. Also fix a corner case in CR line ending handling. Check both + things in the test suite. + * gtk/apport-gtk: Add missing 'import subprocess.'. Closes: LP#81007 + * debian/control: Bump apport's and apport-gtk's dependency to python-apport + to make sure that apport.ui is available. Closes: LP#81019 + * apport/ui.py: Add missing 'import pwd'. Closes: LP#81033 + + Minor improvements: + + * apport/ui.py: Get the cloakroom ticket number from the + X-Launchpad-Blob-Token HTTP header instead of parsing the resulting page. + + -- Martin Pitt Tue, 23 Jan 2007 11:27:20 +0100 + +apport (0.41) feisty; urgency=low + + New feature: Use Malone cloakroom for uploading reports. Closes: LP#70919 + + * gtk/apport-gtk.glade: Redesign bug reporting dialog to have a 'Create bug + report' and a 'Cancel' button. Also assign GTK_RESPONSE_* constants to the + dialog buttons. Go back to Glade 2 since Glade 3 still sucks too much. + * gtk/apport-gtk: Adjust workflow for sending report to Malone cloakroom + instead of asking the user to attach the file. Sending is not yet + implemented, though. + * gtk/apport-gtk: Do not show any dialogs any more when filing a bug. + * Add apport/MultipartPostHandler.py: This module provides an urllib2 opener + for uploading file attachments to forms over HTTP POST. This module is + (C) 2006 Will Holcomb and was taken from + http://odin.himinbi.org/MultipartPostHandler.py. (This is a serious hole + of the Python standard library IMHO.) + * apport/ui.py, file_report(): Upload blob to Malone (edge.launchpad.net for + now), retrieve the ticket, and pass it to +filebug. + + Refactorizations: + + * gtk/apport-gtk: Major refactorization to use modal dialogs and run() + instead of loosely coupled event handlers. + * Add apport/ui.py: Abstract frontend which encapsulates the logic, workflow + and UI independent bits and provides UI hooks for concrete + implementations. This both makes it easy to write more frontends like Qt + or CLI, and also makes the code automatically testable. Add an extensive + testsuite. + * run-tests: Add ui.py testsuite. + * gtk/apport-gtk: Port to ui.py's UserInterface (which means moving 1/3 of + the code into the new ui_*() methods and throwing away the rest). + * Add apport/REThread.py: Enhanced threading.Thread class that can propagate + the return value and uncaught exceptions of run() to the calling thread. + * apport/ui.py: Get rid of thread_check_bugpatterns() and hackish exception + handling, rewrite using REThread. + * apport/ui.py, gtk/apport-gtk: Add progress bar to report upload. It is + indefinite for now, because neither urllib2 nor httplib support upload + progress. + + Bug fixes: + + * gtk/apport-gtk.glade: Merged Gnome HIG fixes from Sebastian Heinlein, + thank you! + * Merge patch from Sebastian Heinlein to properly treat the apport-gtk icon + the dh_iconcache way and make it themeable. Thank you! + * gtk/apport-gtk: Remove periods from primary dialog texts to comply with + Gnome HIG standards. + * backends/packaging-dpkg.py, get_file_package(): Process list files in + chunks of 100, so that we do not exceed the maximum command line length if + there is a large number of packages installed. Closes: LP#64839 + * gtk/apport-gtk: Use pgrep with -u instead of pidof for testing whether the + crashed process is already running again, so that we do not match + processes of other users. Add procps package dependency for this. + * gtk/apport-gtk: Only offer to restart programs that are in the $PATH. E. + g. /usr/lib/firefox/firefox-bin cannot be called directly. + Closes: LP#79623 + * apport/report.py: Disassemble 16 instructions instead of 32 bytes to + become independent of the instruction size. Thanks to Kees Cook for the + patch! + + -- Martin Pitt Mon, 22 Jan 2007 10:47:33 +0100 + +apport (0.40) feisty; urgency=low + + * debian/control: Add missing python-dev build dependency, which is + apparently required for 2.5 now. + + -- Martin Pitt Mon, 15 Jan 2007 11:06:20 +0100 + +apport (0.39) feisty; urgency=low + + * Introduce abstract packaging interface and move all dpkg/apt specific bits + to a dpkg implementation of this packaging interface (merge + apport/abstract-pkg branch): + - Add apport/packaging.py: Abstract packaging system query interface. + - Add backends/packaging-dpkg.py: dpkg implementation of abstract + packaging interface. + - run-tests: Run tests of all backends. + - apport/fileutils.py, apport/report.py: Port to packaging.py interface. + - debian/control: Drop python-apport's 'python-apt' dependency since the + backend only uses dpkg now (without measurable performance penalty since + it uses internal caching). + - debian/rules: Install backends/packaging-dpkg.py as our packaging + backend to apport/packaging_impl.py and remove it again on clean. + + -- Martin Pitt Sat, 13 Jan 2007 15:53:08 +0100 + +apport (0.38) feisty; urgency=low + + * Add ./COPYING: GPL license. + * debian/rules: Build POT file again. + * apport/fileutils.py: Add get_all_system_reports() and + get_new_system_reports() and added test cases. Now the test suite can also + be run as root to be able to actually check their complete behaviour. + Adapt the other tests to get along with running the tests as root. + * bin/apport-checkreports: Add option --system to check for system crash + reports. Closes: LP#62316 + * gtk/apport-gtk: If called through sudo to process system crashes, drop + privileges to the original user in open_url() so that we get the web + browser correctly. (LP#62316) Caveat: The user cannot actually attach the + crash report file directly since it is not accessible to the user; this + will get fixed once Malone is able to link a bug report with uploaded + blobs. + + -- Martin Pitt Fri, 12 Jan 2007 14:29:44 +0100 + +apport (0.37) feisty; urgency=low + + * problem_report.py: Remove the requirement that values must not contain + empty lines. Add test cases that reading and writing values with empty + lines works, and add a test case that load() properly complains about + empty lines in debcontrol encoding (empty lines in values are encoded with + a single space). Closes: LP#78094 + * apport/report.py test suite: Do not rely on a particular structure of the + 'cat' stacktrace; apparently this is not consistent across architectures. + Instead, compile a segfaulting mini C program, let it dump core, and test + add_gdb_info() on it instead. This also allows us for a more rigid check + of StacktraceTop. + + -- Martin Pitt Mon, 8 Jan 2007 14:44:08 +0100 + +apport (0.36) feisty; urgency=low + + * gtk/apport-gtk.glade: Restore pulse step of progress bar (this apparently + got destroyed when saving with Glade 3). + * gtk/apport-gtk{,.glade}: Terminate the program properly when closing the + progress dialog instead of exiting with an exception. + * gtk/apport-gtk: Defer opening of the bug reporting window a bit so that + it appears on top of the browser window. Also enable the task bar blinking + for it when it is in the background. + * gtk/apport-gtk.glade: Restore vertical padding of bug report dialog labels + (another Glade 3 transition regression). + * bin/apport-retrace, apport/report.py: Call gdb on InterpreterPath if + present; calling it on a script does not yield anything useful. Add a test + case to report.py. + * debian/apport.init: Use mkdir -p instead of install -d, since install is + not in /bin. Thanks to Kees Cook for catching this. + * debian/control: Add missing python-apport dependency 'python-apt', which + is not caught by ${python:Depends}. + * gtk/apport-gtk: Catch MemoryError when loading a report and display an + error dialog instead of just crashing. Closes: LP#76235 + * gtk/apport-gtk: Properly catch exceptions from the bug pattern check + thread to avoid useless backtraces like in bug #75160. + * gtk/apport-gtk: Catch exceptions from decoding of damaged reports and + display an error message instead of crashing. Closes: LP#77149 + * apport/report.py: Add missing import of 'time' to test suite. + + -- Martin Pitt Fri, 5 Jan 2007 09:49:01 +0100 + +apport (0.35) feisty; urgency=low + + Optimizations: + + * apport/fileutils.py: Split out heuristics for determining whether a file + belongs to a package to new function likely_packaged() and add test cases. + * bin/apport: Do not use the expensive find_file_package() any more, use + likely_packaged() instead. This will create initial reports in some + corner cases (like custom non-packaged executables in /usr/bin/), but + greatly reduces I/O impact at crash time. We rely on apport-gtk to deal + with reports that do not actually belong to a packaged executable. + * apport/report.py, add_gdb_info(): Call gdb just once and split the output + instead of calling it again for each command. This should significantly + speed up the gdb stage especially for large programs/core dumps. + * Use cStringIO instead of StringIO in modules. + * gtk/apport-gtk: Code cleanup and refactorization: + - Move iteration over crash reports into __main__ to simplify housekeeping + in the ApportGTK class and get rid of some functions. + - Refactor creation of temporary report file. + * gtk/apport-gtk.glade: Split the text in the progress bar dialog so that we + can use it for multiple steps (like uploading data to Malone) while not + breaking translations. + + New feature: Bug reporting tool (https://wiki.ubuntu.com/BugReportingTool) + + * gtk/apport-gtk: Split out crash report initialization to new function + show_crashes() so that we can use the frontend for other purposes like bug + reporting. + * gtk/apport-gtk: Add --file-bug, --package, and --pid options; if given, + create a bug report about the given package instead of viewing crash + reports. + * gtk/apport-gtk{,.glade}: Generalize some strings to not talk about 'crash' + any more, to make them suitable for bug reporting, too. + * gtk/apport-gtk: Support --file-bug without specifying a package or a PID + for filing generic distro bugs. + * problem_report.py: Add new method write_mime() to encode a problem report + in MIME/Multipart RFC 2822 format (i. e. an email with attachments). Short + values are aggregated into the first inline text/plain part, large values, + binary values, and file references get gzip compressed separate + attachments. Also add various test cases. + + Bug/crash information: + + * apport/report.py, add_user_info(): Add list of system groups that the user + belongs to. + * bin/apport: Call add_user_info(), check functionality in test-apport. + * apport/report.py, add_gdb_info(): Add field 'StacktraceTop' with the top + five functions on the stack and no local variables. This reduced 'glimpse' + is suitable for inline display in bug reports and automatic processing + (dup finders, etc). + + Bug fixes: + + * po/Makefile: Add top_srcdir to work with current intltool. + * po/de.po: Unfuzz some strings. + * apport/report.py, add_gdb_info(): Strip away the 'No symbol table info + available' messages from stack traces. + * apport/report.py, test_search_bug_patterns(): Use security.u.c. instead + of archive.u.c., since the latter times out too often. + + -- Martin Pitt Wed, 3 Jan 2007 16:45:20 +0100 + +apport (0.34) feisty; urgency=low + + * apport/fileutils.py, mark_report_seen(): Do not bail out if os.utime() + fails due to access permissions. This happens if the file does not belong + to the user calling apport-gtk, but is world-readable (such as ubiquity + crash reports). If utime() fails, repeatedly open()/close() the file for + reading until atime != ctime, or the 1.2s timeout is reached. + Closes: LP#72250 + * apport/python_hook.py: Add unit test, call that in run-tests. + * apport/python_hook.py: Chmod the generated report to 0600 to not expose + potentially private data to the world, and to be consistent with other + crash reports. + * apport/fileutils.py: Add check_files_md5() and test cases. + * apport/report.py, add_package_info(): Append list of modified package + files to Package: and Dependencies: value. Closes: LP#70946 + * bin/apport-retrace: Get along with Package:/Dependencies: fields with list + of modified files. + + -- Martin Pitt Fri, 22 Dec 2006 12:40:55 +0100 + +apport (0.33) feisty; urgency=low + + * debian/rules: Convert to cdbs. This fixes the dh_pysupport invocation + along the way, too. + * gtk/apport-gtk: Rework web browser invocation: Use kfmclient if available, + fall back to firefox-remote, then to webbrowser.open(). Do not call + x-www-browser any more since this would block if no running browser was + open before. + * Drop the apport_utils module (and with it the python-apport-utils + package), it became too much of a dumping ground. The report file handling + functions now live in apport.fileutils, and the debugging information + collectors are now methods of a new 'Report' class (subclass of + ProblemReport) in the new apport.report module. Adjust all programs + accordingly. + * Add debian/python-apport.postinst: Remove old .pyc and .pyo cruft on + upgrades to clean up after our broken dh_pysupport invocation in earlier + versions, so that the new modules are actually used. + * Remove debian/apport.postinst: Those cleanups were only necessary for + intra-edgy upgrades. + + -- Martin Pitt Tue, 19 Dec 2006 01:15:27 +0100 + +apport (0.32) feisty; urgency=low + + * apport_utils.py: Filter out "no debugging symbols found" warnings from gdb + outputs, and add some tests for this. Thanks to Kees Cook for the patch! + * test-apport: Fix AGENTPATH directory when building the preload library + (recently moved to bin/). + * use-local: Fix path to apport as well (recently moved to bin/). + * apport-retrace: Use ldd on InterpreterPath if present; ldd'ing scripts + will not get us very far. Closes: LP#72201 + + -- Martin Pitt Thu, 14 Dec 2006 13:42:58 +0100 + +apport (0.31) feisty; urgency=low + + * Move scripts to bin/ in source package. + * Add apport/python_hook.py: Default exception handler for Python, to create + apport reports for unhandled exceptions. Thanks to Robert Collins + for this! Closes: LP#70957 + * Add new package python-apport to ship the new Python package 'apport'. + This includes the python crash hook for now, but in the near future + apport-utils will get redesigned and put into this package, too. + * debian/control: apport now depends on python-apport instead of + python-apport-utils. + * apport_utils.py: Quiesce gdb error messages in test suite. + + -- Martin Pitt Sat, 25 Nov 2006 12:30:41 +0100 + +apport (0.30) feisty; urgency=low + + * test-apport, use-local: Support both kernel 2.6.17 and 2.6.19 sysctl names + (crashdump-helper vs. crashdump). + * gtk/apport-gtk.glade: Improve dialog title capitalization. + Closes: LP#70652. + * debian/apport.cron.daily: Immediately exit if /var/crash does not exist. + Create /var/crash in debian/apport.init if it does not exist. + Closes: LP#71599 + * Convert all tabs in Python source code files to spaces to comply to PEP 8. + Thanks to Robert Collins for pointing this out. + * apport_utils.py, gtk/apport-gtk: Do not pass None to subprocess arguments + if report belongs to a non-packaged program. Thanks to Robert Collins for + discovering and fixing this! Closes: LP#70942 + * debian/apport.init: Change /var/crash permissions to 1777, so that custom + crash handlers (in Python/Mono/etc.) can put reports there. + + -- Martin Pitt Sat, 25 Nov 2006 10:44:33 +0100 + +apport (0.29) feisty; urgency=low + + * apport-retrace: Do not crash if a linked library is not a dependency. + Closes: LP#65914 + * apport_utils.py: + - Add test_find_file_package_diversion() selftest to check diversion + handling. + - find_file_package(): Check for and respect diversions. + - Closes: LP#65917 + * debian/apport.init, test-apport, use-local: Adapt to 'crashdump-helper' -> + 'crashdump' sysctl renaming in 2.6.19. + * test-apport: Restore cwd even when failing a test. + * problem_report.py, ProblemReport.write(): Support file-like objects as + argument of file references to support direct reading from pipes. Add test + case test_write_fileobj(). + * apport: Support '-' as core file argument, in which case the core will be + read from stdin. This paves the way for using Linux 2.6.19's 'pipe + core_pattern' feature. Bump python-problem-report dependency to >= 0.29 + for this. + * apport: Confine permissions of log file to root:adm 0640, just in case. + * apport: Temporarily drop real u/gid to target user for the os.access() + tests, so that normal users cannot verify the existence of a given + inaccessible file. Add comprehensive tests to apport_utils' test suite and + test-apport. Thanks to Kees Cook for this patch! + * apport_utils.py, find_file_package(): Terminate fgrep options with '--' to + avoid problems with funny file names. Thanks to Kees Cook for spotting + this! + * test-apport: Automatically detect whether ULIMIT_CORE is nonzero, and + adapt tests accordingly: check that core still exists after invoking + apport, and clean it up. + * apport-retrace: Add new mode -g/--gdb which starts an interactive gdb + session with the report's core dump. Add this to man/apport-retrace.1, too. + * apport-retrace: If -c is given, completely remove the CoreDump field from + the report instead of setting it to 'removed'. + * test-apport: When using 'lib' mode, point APPORT_LOG_FILE to a temporary + file. Print it if the test suite fails. + * test-apport: Fix EXFAILure of the 'core dump works for non-writable cwds' + test case. + * preloadlib: Support -DPIPE_CORE mode which emulates the + pipe-in-core_pattern mode of kernel 2.6.19. + * test-apport: Build preload library with core piping. No more failed test + suite checks in 'lib' mode. + + -- Martin Pitt Sun, 5 Nov 2006 07:10:30 -0800 + +apport (0.28) edgy; urgency=low + + "No core - ignore!" + + * apport: Do not create a report for crashes which we do not get a core dump + for. The reports are useless and only clutter our bug tracker. + + -- Martin Pitt Mon, 9 Oct 2006 15:22:32 +0200 + +apport (0.27) edgy; urgency=low + + * apport: Ignore SIGABRT for now; it's usually signalled from abort() or + assertion failures and we only get reports with unusable stack traces for + it (see #61938). + * gtk/apport-gtk: If gnome-open is not available, fall back to x-www-browser + instead of using webbrowser.py, to respect default browser in XFCE. + Closes: LP#64209 + * apport: use os.nice() instead of executing 'renice'. Thanks to Benoit + Boissinot for noticing. + * apport_utils.py, find_file_package(): Lower() both strings in the speedup + heuristics to match e. g. /usr/bin/Xorg -> xserver-xorg. Thanks to Kees + Cook! + * apport_utils.py, report_add_package_info(): Do not crash if we encounter a + 'None' current version, which can happen with uninstalled alternative + dependencies. Thanks to Kees Cook for tracking this down! + + -- Martin Pitt Fri, 6 Oct 2006 17:15:08 +0200 + +apport (0.26) edgy; urgency=low + + * apport-retrace: Clean up code a bit: + - Move option parsing to separate function. + - Use apport_utils' report_add_gdb_info() instead of duplicating the gdb + code. + * apport_utils.py, report_add_gdb_info(): Add optional parameter 'debugdir' + to specify an alternate debug file symbol root directory. + * apport-retrace: Add option -d/--download-debug to automatically download + available ddebs, create a temporary debug symbol directory from already + installed and downloaded ddebs, and point gdb to use that. Also add option + -C/--cache-dir to specify a permanent ddeb cache directory (by default, a + temporary one is used). Update the manpage accordingly. + * apport-retrace: Make the best out of a report without packaging + information (which can happen if the user does not click on 'report bug' + in apport-gtk). + * apport_utils, report_add_proc_info(): + - Move heuristics for detecting interpreted scripts to a separate function + to be able to provide separate test cases for it. Check a few more + special cases for mono programs. + - Make interpreter heuristics even scarier to detect some more mono corner + cases (like banshee and beagled-helper). Closes: LP#58859 + + -- Martin Pitt Wed, 4 Oct 2006 19:10:47 +0200 + +apport (0.25) edgy; urgency=low + + * Drop apport-gtk's update-notifier dependency to a Recommends:. + * apport_utils.py, report_add_gdb_info(): Add register dump and disassembly + of the last 32 bytes, they might be useful to see what's going on + sometimes. Thanks to Kees Cook for the idea and the patch. + * test-apport, check_crash(): Verify that a crash does not leave a core file + behind. (Test for LP#62972) + * preloadlib/libapport.c: Do not unlink the core file after calling apport, + but set REMOVE_CORE=1 environment instead. This matches the current + kernel behaviour. + * apport: Register an atexit handler as early as possible for unlinking the + core dump if REMOVE_CORE environment is set. Closes: LP#62972 + * apport: Set nice level 10 instead of 5. Closes: LP#63099 + + -- Martin Pitt Mon, 2 Oct 2006 14:21:53 +0200 + +apport (0.24) edgy; urgency=low + + The "Need for speed" release -- rrrroarrr! + + * apport: Remove _copy_shrink_corefile(): While this has an enormous impact + on the size of an uncompressed core dump, it only causes a negligible size + reduction of the bzip2'ed core, but it needs a lot of I/O resources for + large core dumps. + * problem_report.py: + - Use zlib instead of bzip2 for compressing the binary data (in + particular, core dumps). This results in slightly bigger files, but speeds + up compression a lot (30 seconds vs. ~2:45 minutes for a Firefox core dump + on my slow iBook). Closes: LP#61538 + - ProblemReport.read(): Support both bzip2 and zlib compression to be able + to read existing reports, too. + - Add/Adapt test cases. + * Move InformationCollector._get_gdb() from apport to apport_utils.py + report_add_gdb_info(), and add a test case for it. + * apport_utils.py, report_add_package_info(): Support calling without a + package name, then it will be figured out from ExecutableName. Extend test + case accordingly. + * test-apport: Do not require apport reports to contain gdb, packaging, and + OS information, since we are going to move them out of apport. + * apport: Do not collect static information. It requires a lot of CPU and + I/O resources and slows down the machine a lot, and it can be added to + the report later in the frontend. This also gets rid of the entire + InformationCollector class, since everything has been moved to + apport_utils.py now. Closes: LP#62542 + * apport: Do not intercept KeyboardInterrupt as unhandled exception (only + useful for command line debugging, though). + * problem_report.py: Add test case for appending new data to an existing + report, fix write() function to not rely on an existing ProblemType key. + * problem_report.py: Add new method ProblemReport.add_to_existing() to + update an already existing problem report with new data. Add test case. + * apport_utils.py, mark_report_seen(): Use os.utime() instead of + open()/read() and a timeout for simpler and faster operation. + * gtk/apport-gtk: + - Collect gdb/packaging/operating system information when the user chooses + to file a bug and update the apport report. + - Change the 'Downloading bug patterns...' progress dialog to 'Collecting + information about the crash...'. + * debian/control: Bumped library dependencies of apport-gtk, added + update-notifer dependency. + + -- Martin Pitt Fri, 29 Sep 2006 15:47:56 +0200 + +apport (0.23) edgy; urgency=low + + * apport: Reset signal handler to SIG_IGN in the crash signal handler, to + avoid an endless crash/handler loop (noticed during debugging LP#61708). + * debian/apport.init: Do not let the script run with set -e, so that + do_{start,stop} can deliver their return codes for proper evaluation, + instead of immediately existing. Closes: LP#61796 + * test-apport: Check that SIGQUIT does not generate a report. (Check for + bug #62511). + * apport: Ignore SIGQUIT. Closes: LP#62511 + + -- Martin Pitt Thu, 28 Sep 2006 20:57:38 +0200 + +apport (0.22) edgy; urgency=low + + * apport_utils.py, report_add_proc_info(): Make 'interpreted script' + detection more general to also work for mono programs. + * test-apport: Check that non-packaged scripts do not generate a report. + * apport: Call ic.collect_runtime_information() earlier and drop the local + /proc/pid/exe examination, so that we get proper script detection. This + avoids getting crash reports for non-packaged scripts (see test case + change from above). + * apport: Do not try to chmod the report file if we could not create it and + output to stderr instead (this mainly affects local testing only). + * apport_utils.py, find_file_package(): First grep the package lists whose + names are a substring of the crashed binary name (or vice versa), to + immensely speed up the package name determination in many cases. + * apport: Drop the maximum number of consecutive crashes per executable + from 5 to 2. 5 creates a too bad user experience and creates the + impression that it will never stop. Closes: LP#61078 + + -- Martin Pitt Tue, 19 Sep 2006 16:16:46 +0200 + +apport (0.21) edgy; urgency=low + + * apport: Keep a partially written report with '000' permissions, and only + chmod it to 0600 when it is fully written. This stops update-notifier from + picking up half-written reports and get activated several times. + Closes: LP#59988 + * apport: Add the executable path to the first line of logging. + * apport: Run the complete code under control of the general exception + fallback handler. + * debian/apport.default: Increase maximum core size to 200 MB, to also catch + Firefox and Evolution core dumps. + * apport_utils.py, find_file_package(): Before searching the dpkg database + (which is expensive), check if the executable path matches a whitelist of + path prefixes. This replaces the weaker blacklist (/tmp and /home) in + apport itself. + * gtk/apport-gtk: Show a progress dialog while checking for bug patterns and + execute report_search_bug_patterns() in a separate thread, so that the UI + is not potentially blocked for a long time. + * apport: Gracefully abort if we cannot readlink /proc/pid/exe, instead of + falling over with an exception. Closes: LP#59993 + * debian/rules: Use 'multiuser' instead of 'defaults' for dh_installinit. + Clean up the unnecessary rc symlinks in postinst and add appropriate + sysv-rc dependency. + + -- Martin Pitt Thu, 14 Sep 2006 23:16:26 +0200 + +apport (0.20) edgy; urgency=low + + * apport: Renice ourself to priority 5 to not slow down the user's processes + so heavily. + * Add manpages for apport-retrace(1) and apport-unpack(1) and install them + into apport. Closes: LP#58463 + * problem_report.py: Test attaching two files instead of one in the + test_write_file() regression check to assert correct key sorting. + * problem_report.py: Alter write() method to sort binary data to the end of + the report. This makes reports easier to read, and also shows relevant + information more quickly when progressively loading them in a web browser. + Adapt regression tests accordingly. + * Move setting of ExecutablePath from apport's InformationCollector ctor to + apport_utils' report_add_proc_info(), where it belongs to. Check + ExecutablePath in apport_utils' regression tests. + * apport-unpack: Support '-' as report argument to read from stdin. + * apport_utils.py, report_add_proc_info(): + - Apply some heuristics to determine whether the crashed process is an + interpreted script (check if the Name in /proc/pid/status matches + the second /proc/pid/cmdline part, and if that command line argument is + an existing executable file). In the case of an interpreted script, set + ExecutablePath to the script and InterpreterPath to the actually crashed + ELF binary. + - Test this with a shell (/bin/zgrep) and a Python (./apport-unpack) + script in the test suite. + - Closes: LP#58859 + * Add debian/apport.logrotate to add a daily 7-step /var/log/apport + log rotation. + * test-apport: Fix WCOREDUMP() and pidof checks in check_crash(). + * apport: Install a signal handler for all 'crashy' signals, which just logs + the signal and stack info and exits. This should avoid a crashing apport + examining itself, possibly in an endless loop. Closes: LP#58873 + + -- Martin Pitt Mon, 11 Sep 2006 09:20:18 +0200 + +apport (0.19) edgy; urgency=low + + * apport_utils.py: Add function report_search_bug_patterns(): Try to + download a package specific bug pattern XML file from a given URL base + directory and return the bug URL in case of a match. Also add extensive + test suite check. + * test-apport: Fix help message. + * apport-gtk: Make use of the new report_search_bug_patterns() function and + display appropriate instructions on match. Bump python-apport-utils dependency. + + -- Martin Pitt Tue, 5 Sep 2006 11:31:17 +0200 + +apport (0.18) edgy; urgency=low + + The "mating dance for ubiquity" release. + + * apport-gtk: + - Use pidof's -x option in the detection whether the program is already + running to correctly handle scripts. + - Do not assume the presence of the ExecutablePath key in reports, but + gracefully fall back to Package. + - If the report specifies an explicit DesktopFile, use that instead of + trying to figure it out. + - Only created reduced report and show the radio buttons if there are + actually removed fields. + - Change tooltip of 'reduced report' radio button to be more generic (do + not refer to the memory dump, but to 'large items', since this is what + apport-gtk currently does). + - Support new field 'BugDisplayMode: file | list (default)'. In 'file' + mode, display the /+filebug page instead of /+bugs and change + instructions accordingly. + - Use the ProcCmdline attibute to restart an application; correctly + parsing of all the desktop file is just not possible at this point. + - Support new field 'RespawnCommand' to use custom respawning command. + * problem_report.py: Add method has_removed_fields() to check whether load() + skipped any fields due to binary=False. Add test suite check. + * apport_utils.py: Fix the quoting in ProcCmdline so that it is fully shell + compatible. + * run-tests: Check if kernel crash dump helper is active, and if so, run + test-apport in kernel mode. + * problem_report.py: Support an optional second argument of file references + which controls whether or not the file contents will be compressed/encoded + (defaults to True for backwards compatibility). Add test suite checks. + + -- Martin Pitt Fri, 25 Aug 2006 14:01:47 +0200 + +apport (0.17) edgy; urgency=low + + * Move packaging information collection from apport to new function + report_add_package_info() in apport_utils.py, add test suite check. + * Move operating system information collection from apport to new function + report_add_os_info() in apport_utils.py, add test suite check. + * Move /proc information collection from apport to new function + report_add_proc_info() in apport_utils.py, add test suite check, and fix + handling of failed /proc/$$/environ reading. + * preloadlib/libapport.c: Route gcore's stderr to /dev/null to suppress + error messages during the test suite and to become more compatible to the + kernel behaviour. + * Change apport_utils.py to be a public module and ship it in the new + python-apport-utils package, so that other applications like ubiquity can + use it easily. + * po/de.po: Add new translations to make this complete again. + * problem_report.py, apport_utils.py: Prepend UnitTest classes with '_' so + that they do not appear in the help() output. + * apport_utils.py: Add make_report_path(), which constructs the canonical + crash report pathname for a given report. + * Add debian/apport.postinst: Remove /usr/share/apport/apport_utils.pyc when + upgrading from an earlier version, so that the programs in + /usr/share/apport actually use the version from p-apport-utils. + + -- Martin Pitt Tue, 22 Aug 2006 18:14:00 +0200 + +apport (0.16) edgy; urgency=low + + * test-apport: Check that non-packaged binaries do not generate a report. + * apport_utils.py: Add find_file_package() to find the package a file + belongs to. This uses fgrep /var/lib/dpkg/info/*.list which is much faster + than dpkg -S. Also add test suite check. + * apport: Use find_file_package() instead of direct dpkg -S call and pass + the result to the InformationCollector ctor to avoid grepping the dpkg + lists twice. + * apport: Immediately exit if the executable name starts with /home or /tmp, + to avoid grepping the dpkg database in the common developer case. + * apport: Replace 0-bytes in ProcCmdline with spaces to keep them readable. + * apport-gtk: Offer an alternative small report (without the core dump) for + users with slow internet connection. + + -- Martin Pitt Mon, 21 Aug 2006 19:34:47 +0200 + +apport (0.15) edgy; urgency=low + + * Add apport-unpack: Script to extract the fields of a problem report into + separate files into a new or empty directory. Mainly useful for extracting + compressed binary data like the core dump. + * test-apport: Check that dumped environment only contains security + insensitive variables. + * apport: Filter out all environment variables but $SHELL, $PATH, and + locale/language related ones. Closes: LP#56846 + * test-apport: Delete test report in the cleanup handler so that the + kernel-mode test can be run multiple times without manual cleanup. + * test-apport: Check for running apport and test executable processes in + check_crash(). + * preloadlib/libapport.c: Improve error checking, some robustification. + * test-apport: If using the preload library, wait a second between the test + process invocations in the flooding test to mitigate a strange race + condition that sometimes causes the signal handler not to be executed. + + -- Martin Pitt Sun, 20 Aug 2006 16:28:43 +0200 + +apport (0.14) edgy; urgency=low + + * preloadlib/libapport.c: Write core dump into cwd instead of /tmp to act + like the current kernel. + * apport_utils.py: Check APPORT_REPORT_DIR environment variable for an + alternate crash report directory. This is mainly useful for a local test + suite. + * apport: Quiesce the apt module's FutureWarning. + * preloadlib/libapport.c: Re-raise the signal instead of doing exit() so + that the process exits with the same code as it would do without the + library. + * preloadlib/libapport.c: Close stdout for gcore process. + * Add test-apport: Use preloadlib/ and APPORT_REPORT_DIR to create a + sandboxed environment and run various apport functionality tests. Also add + this script to run-tests. + * apport_utils.py, delete_report(): Actually try to unlink the report before + falling back to truncating it to zero bytes. + * preloadlib/libapport.c: Close stderr for apport process. + + -- Martin Pitt Fri, 18 Aug 2006 15:46:37 +0200 + +apport (0.13) edgy; urgency=low + + * Do not run the test suite on build since on the buildds modifying + file atimes does not work. + + -- Martin Pitt Fri, 18 Aug 2006 00:59:26 +0200 + +apport (0.12) edgy; urgency=low + + * apport-gtk: Make bug report window resizable when the details are + expanded. Closes: LP#56672 + * apport_utils.py: Add get_recent_crashes() and a test suite check for it. + * apport: If the same binary produced more than 5 crashes in the last 24 + hours, ignore the crash. This is a hideous and pretty ad-hoc band-aid to + avoid flooding users with reports for continuously crashing respawning + processes. Closes: LP#56362 + * apport: Clean up exit codes to only exit with 0 if report was created, and + with 1 otherwise (to become more compatible to proposed future kernel + behaviour, where core dumps are only generated on demand). + * Add run-tests script which calls all available selftests. + * debian/rules: Run run-tests during build to have the package FTBFS on + regressions. Add python build dependency for this (it is already there + implicitly anyway). + + -- Martin Pitt Thu, 17 Aug 2006 16:06:41 +0200 + +apport (0.11) edgy; urgency=low + + * gtk/apport-gtk.glade: Remove separators from dialogs. Closes: LP#56326 + * apport: + - Move information collection from ctor to two new separate functions + collect_runtime_information() (fast, privileged, crashed process must + exist) and collect_static_information() (slow, unprivileged, crashed + process does not need to exist). This allows a cleaner design. + - Add missing close() call in init_error_log(). + - Do not catch SystemExit in the final catch-all-and-log clause (will + become important once we switch to master/slave processes). + - Clean up handling of temporary files. + - Log successful report creation with file and package name, to ease + debugging. + - transitive_dependencies(): Do not break on pure virtual dependencies + (like perl-api-XXX). + * Add debian/apport.default: Default file to disable apport entirely and to + change the maximum size of kernel created core dumps. + * debian/apport.init: Evaluate new default file. + + -- Martin Pitt Wed, 16 Aug 2006 17:05:19 +0200 + +apport (0.10) edgy; urgency=low + + * apport-gtk: Show report file size in bug report window. + * apport: Correctly handle relative paths to core dumps (use crashed + process' cwd). + * Fix the GPL URLs in source file's copyright comments. + * debian/apport.cron.daily: Add -mindepth 1 to find commands to avoid + attempting to remove the /var/crash/ directory. Closes: LP#55107 + * problem_report.py: + - Fix precise whitespace handling in continuation lines, add selftest. + - Add selftest for reading a report, modifying fields, and writing it + back. + - Fix writing back binary data, adapt test suite to check it. + - Fixed ProblemReport.load() to clean up old data, added selftest. + - Restructure class to inherit from IterableUserDict and throw away all + the now obsolete dictionary wrapper methods. + * debian/apport.init: Add colon to description to make output less + confusing. + * Add apport-retrace and install it into apport: This tool takes a crash + report and refreshes the stack traces in it. This is particularly useful + if debug symbols are installed now, but haven't been at the time the crash + occured. + + -- Martin Pitt Fri, 11 Aug 2006 15:40:05 +0200 + +apport (0.9) edgy; urgency=low + + * apport: Call objcopy to throw out READONLY/CODE sections from the core + dump, which drastically reduces its (uncompressed) size (factor 2 to 10). + This has little effect on the bzip2'ed core dump, though. + * apport: + - Support an optional third command line argument which specifies the + location of a core dump. + - If a core dump is given, call gdb on the core dump instead of the + crashed process. We cannot attach to the latter if we are called by the + kernel (since the crashed process is in uninterruptible kernel sleep). + - If no core dump is given, do not attempt to do anything gdb related. + - This matches the future behaviour of the kernel crash dump helper while + remaining compatible to the previous call semantics. + * Add preloadlib/{Makefile,libapport.c}: LD_PRELOADable library which + emulates the future kernel behaviour. This is ONLY for testing and + development purposes. It uses unsafe temporary file handling and thus must + not be used on production boxes! + * Ship preloadlib/* as examples in package 'apport' for people who want to + play with it until the new kernel arrives. + * Add preloadlib/README: Explain how to use the preload library. + + -- Martin Pitt Wed, 9 Aug 2006 12:12:20 +0200 + +apport (0.8) edgy; urgency=low + + * apport_utils.py: + - Add two new functions seen_report() and mark_report_seen(). + - get_new_reports(): Only return unseen reports, add function + get_all_reports() for the old behaviour. + * gtk/apport-gtk.py: Do not delete reports after notifying about them. This + way, we do not need to add another button to save the report (which is + considered evil UI-wise), but still retain the report for filing and + examining later. + * Replace all usages of '/var/crash' to a new global variable in + apport_utils; this is particularly useful for test suites. + * apport.py: Overwrite old reports if they are seen. + * apport_utils.py: Add a test suite for all exported functions. + + -- Martin Pitt Tue, 8 Aug 2006 19:29:23 +0200 + +apport (0.7) edgy; urgency=low + + * Add apport_utils.py: Factorize out some common code of apport-gtk, + possible future frontends, and some backend tools. + * Add apport-checkreports: Test if there are new crash reports for the + invoking user. This factorizes out the tests we currently do in + update-notifier and makes them easier to change and keep in sync with + apport itself. Ship the script in the apport package. + + -- Martin Pitt Tue, 8 Aug 2006 17:24:46 +0200 + +apport (0.6) edgy; urgency=low + + * Add missing intltool build dependency to fix FTBFS. + + -- Martin Pitt Thu, 3 Aug 2006 09:15:42 +0200 + +apport (0.5) edgy; urgency=low + + * apport-gtk: Remove the crash report after it got displayed. + * apport-gtk: Fix exception on startup if no readable crash reports exist. + + -- Martin Pitt Wed, 2 Aug 2006 23:42:34 +0200 + +apport (0.4) edgy; urgency=low + + * Implement completely new UI according to the design described at + https://wiki.ubuntu.com/CrashReporting. Many thanks to Matthew Paul + Thomas! + * po/Makefile: Fix default target to not just break. Now it builds the .pot + file. + * debian/rules: Build .pot file on package build for automatic Rosetta + import. + * Bring German translations up to date. + * po/Makefile: Supply '--language=python' to intltool-update to properly + extract strings from apport-gtk. + + -- Martin Pitt Wed, 2 Aug 2006 23:14:58 +0200 + +apport (0.3) edgy; urgency=low + + * debian/rules clean: Also clean po/. + * debian/apport.cron.daily: Clean away empty files everytime. + * apport: Only consider a report as already present if it has a non-zero + size. + * apport: Set proper group for report files instead of 'root'. + * apport-gtk: Ignore 0-sized reports. + * apport-gtk: Add button to remove the current report (by truncating the + file to zero bytes; a user cannot unlink files in /var/crash). + * apport-gtk: Only display reports that the user can actually read. + * problem_report.py: Add 'binary' option to ProblemReport.load() to + optionally skip binary data. + * debian/rules: Clean stale *.pyc files. + * python-gtk: Do not load binary data (core dumps, etc.) to greatly speed up + the GUI. They are just gibberish anyway. + * apport: Switch from apt_pkg to apt, add SourcePackage: to reports. + * apport-gtk: Use source package name for the Malone URL. + * debian/rules: Call setup.py install with --no-compile to not ship *.pyc in + debs. + + -- Martin Pitt Mon, 31 Jul 2006 13:11:52 +0200 + +apport (0.2) edgy; urgency=low + + * debian/apport.cron.daily: Do not produce error messages if 'find' does not + find any crash reports. + * problem_report.py: Support iterators, add test case. + * apport: Filter out trailing 0-byte from ProcCmdline. + * Add a simple GTK frontend, ship it in new package apport-gtk. + + -- Martin Pitt Thu, 27 Jul 2006 23:52:33 +0200 + +apport (0.1) edgy; urgency=low + + * Initial release. This package implements the client backend part of + https://wiki.ubuntu.com/AutomatedProblemReports. + + -- Martin Pitt Mon, 24 Jul 2006 14:21:10 +0200 + --- apport-2.20.3.orig/debian/clean +++ apport-2.20.3/debian/clean @@ -0,0 +1,2 @@ +debhelper/dh_apport.1 +apport/packaging_impl.py --- apport-2.20.3.orig/debian/compat +++ apport-2.20.3/debian/compat @@ -0,0 +1 @@ +9 --- apport-2.20.3.orig/debian/control +++ apport-2.20.3/debian/control @@ -0,0 +1,242 @@ +Source: apport +Section: utils +Priority: optional +Build-Depends: debhelper (>= 9), + dh-translations, + dh-systemd, + gdb, + python3-gi, + gir1.2-glib-2.0 (>= 1.29.17), + lsb-release, + net-tools, + python-all, + python3-all +Build-Depends-Indep: python-distutils-extra (>= 2.24~), + python3-distutils-extra (>= 2.24~), + python-apt (>= 0.7.9), + python3-apt (>= 0.7.9), + intltool, + xvfb, + python3-mock, + procps, + psmisc, + gir1.2-gtk-3.0 (>= 3.1.90), + gir1.2-wnck-3.0, + pycodestyle | pep8, + pyflakes, + xterm, + dbus-x11, + gvfs-daemons, + libglib2.0-dev, + libglib2.0-0-dbg, + libnih-dev, + libc6-dbg | libc-dbg, + default-jdk | java-sdk +Maintainer: Martin Pitt +Standards-Version: 3.9.8 +X-Python-Version: >= 2.7 +X-Python3-Version: >= 3.0 +Vcs-Bzr: https://code.launchpad.net/~ubuntu-core-dev/ubuntu/yakkety/apport/ubuntu +Homepage: https://wiki.ubuntu.com/Apport + +Package: apport +Architecture: all +Depends: python3, + python3-apport (>= ${source:Version}), + lsb-base (>= 3.0-6), + python3-gi, + gir1.2-glib-2.0 (>= 1.29.17), + ${misc:Depends} +Recommends: apport-symptoms, policykit-1, python3-systemd +Suggests: apport-gtk | apport-kde +Replaces: python-apport (<< 2.2-0ubuntu1), core-dump-handler +Breaks: python-apport (<< 2.2-0ubuntu1) +Conflicts: core-dump-handler +Provides: core-dump-handler +Description: automatically generate crash reports for debugging + apport automatically collects data from crashed processes and + compiles a problem report in /var/crash/. This utilizes the crashdump + helper hook provided by the Ubuntu kernel. + . + This package also provides a command line frontend for browsing and + handling the crash reports. For desktops, you should consider + installing the GTK+ or Qt user interface (apport-gtk or apport-kde). + +Package: python-problem-report +Section: python +Architecture: all +Depends: ${python:Depends}, + ${misc:Depends} +Description: Python library to handle problem reports + This Python library provides an interface for creating, modifying, + and accessing standardized problem reports for program and kernel + crashes and packaging bugs. + . + These problem reports use standard Debian control format syntax + (RFC822). + +Package: python3-problem-report +Section: python +Architecture: all +Depends: ${python3:Depends}, + ${misc:Depends} +Description: Python 3 library to handle problem reports + This Python library provides an interface for creating, modifying, + and accessing standardized problem reports for program and kernel + crashes and packaging bugs. + . + These problem reports use standard Debian control format syntax + (RFC822). + +Package: python-apport +Section: python +Architecture: all +Depends: ${python:Depends}, + python-apt (>= 0.7.9), + python-problem-report (>= 0.94), + lsb-release, + python-launchpadlib (>= 1.5.7), + ${misc:Depends} +Recommends: apport +Description: Python library for Apport crash report handling + This Python package provides high-level functions for creating and + handling apport crash reports: + . + * Query available and new reports. + * Add OS, packaging, and process runtime information to a report. + * Various frontend utility functions. + * Python hook to generate crash reports when Python scripts fail. + +Package: python3-apport +Section: python +Architecture: all +Depends: ${python3:Depends}, + python3-apt (>= 0.7.9), + python3-problem-report (>= 0.94), + lsb-release, + ${misc:Depends} +Recommends: apport +Suggests: python3-launchpadlib +Description: Python 3 library for Apport crash report handling + This Python package provides high-level functions for creating and + handling apport crash reports: + . + * Query available and new reports. + * Add OS, packaging, and process runtime information to a report. + * Various frontend utility functions. + * Python hook to generate crash reports when Python scripts fail. + +Package: apport-retrace +Section: devel +Architecture: all +Depends: python (>= 2.7), + python3, + python-apport (>= ${source:Version}), + apt, + binutils, + dpkg-dev, + gdb, + libc6-dbg | libc6-dbgsym | libc-dbg, + ${misc:Depends} +Suggests: gdb-multiarch +Description: tools for reprocessing Apport crash reports + apport-retrace recombines an Apport crash report (either a file or a + Launchpad bug) and debug symbol packages (.ddebs) into fully symbolic + stack traces. This can optionally use a sandbox for installing debug symbol + packages and doing the processing, so that entire process of retracing crashes + can happen with normal user privileges without changing the system. + . + You need to install gdb-multiarch if you want to be able to retrace crash + reports which happened on a different architecture than the one you run + apport-retrace on. + +Package: apport-valgrind +Section: devel +Architecture: all +Depends: python3, + python3-apport (>= ${source:Version}), + apt, + binutils, + valgrind (>= 3.8.1-1ubuntu1~), + dpkg-dev, + libc6-dbg | libc6-dbgsym | libc-dbg, + ${misc:Depends} +Description: valgrind wrapper that first downloads debug symbols + apport-valgrind is a valgrind wrapper that automatically downloads related + available debug symbols and provides them to valgrind's memcheck tool, which + is executed. The output is a valgrind log file ("valgrind.log") that contains + stack traces (with as many symbols resolved as available) and that shows + memory leaks. + +Package: apport-gtk +Section: gnome +Architecture: all +Depends: python3, + python3-apport (>= ${source:Version}), + gir1.2-gtk-3.0 (>= 3.1.90), + gir1.2-wnck-3.0, + python3-gi, + apport (>= 0.41), + procps, + x-terminal-emulator, + ${misc:Depends} +Recommends: update-notifier, gdb | gdb-minimal +Description: GTK+ frontend for the apport crash report system + apport automatically collects data from crashed processes and + compiles a problem report in /var/crash/. This utilizes the crashdump + helper hook provided by the Ubuntu kernel. + . + This package provides a GTK+ frontend for browsing and handling the + crash reports. + +Package: apport-kde +Section: kde +Architecture: all +Depends: python3, + python3-apport (>= ${source:Version}), + python3-pyqt5, + apport (>= 0.41), + procps, + x-terminal-emulator, + ${misc:Depends} +Recommends: kubuntu-notification-helper, gdb-minimal | gdb +Description: KDE frontend for the apport crash report system + apport automatically collects data from crashed processes and + compiles a problem report in /var/crash/. This utilizes the crashdump + helper hook provided by the Ubuntu kernel. + . + This package provides a KDE frontend for browsing and handling the + crash reports. + +Package: dh-apport +Section: devel +Architecture: all +Multi-Arch: foreign +Depends: ${perl:Depends}, + ${misc:Depends} +Description: debhelper extension for the apport crash report system + apport automatically collects data from crashed processes and + compiles a problem report in /var/crash/. This utilizes the crashdump + helper hook provided by the Ubuntu kernel. + . + This package provides a debhelper extension to make it easier for other + packages to include apport hooks. + +Package: apport-noui +Section: utils +Architecture: all +Depends: python3, + python3-apport (>= ${source:Version}), + apport (>= 0.41), + procps, + gdb-minimal | gdb, + watershed, + whoopsie, + ${misc:Depends} +Description: tools for automatically reporting Apport crash reports + apport automatically collects data from crashed processes and + compiles a problem report in /var/crash/. This utilizes the crashdump + helper hook provided by the Ubuntu kernel. + . + Installing this package will configure your system to automatically submit + all new Apport crash reports. --- apport-2.20.3.orig/debian/copyright +++ apport-2.20.3/debian/copyright @@ -0,0 +1,15 @@ +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Contact: Martin Pitt +Source: https://launchpad.net/apport/+download + +Files: * +Copyright: + Copyright (C) 2006-2012 Canonical Ltd. +License: GPL-2+ + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + . + On Debian systems, the complete text of the GNU General + Public License can be found in `/usr/share/common-licenses/GPL-2'. --- apport-2.20.3.orig/debian/dh-apport.install +++ apport-2.20.3/debian/dh-apport.install @@ -0,0 +1,2 @@ +../../debhelper/dh_apport usr/bin +../../debhelper/apport.pm usr/share/perl5/Debian/Debhelper/Sequence --- apport-2.20.3.orig/debian/dh-apport.manpages +++ apport-2.20.3/debian/dh-apport.manpages @@ -0,0 +1 @@ +debhelper/dh_apport.1 --- apport-2.20.3.orig/debian/python-apport.install +++ apport-2.20.3/debian/python-apport.install @@ -0,0 +1,2 @@ +usr/lib/python2*/*-packages/apport/* +usr/lib/python2*/*-packages/apport_python_hook.py --- apport-2.20.3.orig/debian/python-problem-report.install +++ apport-2.20.3/debian/python-problem-report.install @@ -0,0 +1 @@ +usr/lib/python2*/*-packages/problem_report* --- apport-2.20.3.orig/debian/python3-apport.install +++ apport-2.20.3/debian/python3-apport.install @@ -0,0 +1,2 @@ +usr/lib/python3*/*-packages/apport/* +usr/lib/python3*/*-packages/apport_python_hook.py --- apport-2.20.3.orig/debian/python3-problem-report.install +++ apport-2.20.3/debian/python3-problem-report.install @@ -0,0 +1 @@ +usr/lib/python3*/*-packages/problem_report* --- apport-2.20.3.orig/debian/rules +++ apport-2.20.3/debian/rules @@ -0,0 +1,44 @@ +#!/usr/bin/make -f + +%: + dh "$@" --with python2,python3,translations,systemd + +# needs manual commands for Python 3, see Debian #597105 +override_dh_auto_clean: + dh_auto_clean + rm -rf build + +override_dh_auto_build: + dh_auto_build + python3 setup.py build + +override_dh_auto_install: + dh_auto_install + set -ex; for python in $(shell py3versions -r); do \ + $$python setup.py install --root=$(CURDIR)/debian/tmp --install-layout=deb; \ + done + +override_dh_auto_test: +ifeq (, $(findstring nocheck, $(DEB_BUILD_OPTIONS))) + # drop LD_PRELOAD to avoid running under fakeroot; drop TMPDIR to work + # around LP#972324 (set by autopkgtest) + # run subset of tests that work on buildds, full tests are in + # autopkgtest + set -e; for t in apport_unpack apport_valgrind crashdb hooks packaging \ + parse_segv problem_report rethread; do \ + env -u LD_PRELOAD -u TMPDIR APPORT_TEST_NOXVFB=1 sh test/run $$t; \ + done +endif + +override_dh_installinit: + dh_installinit --error-handler=true + +override_dh_install: + dh_install -X.pyc -X.egg-info --list-missing + pod2man -c Debhelper -r "$(DEB_VERSION)" debhelper/dh_apport debhelper/dh_apport.1 + # apport-retrace needs python-launchpadlib, which is not yet available + # for Python 3; so switch back to Python 2 + sed -i '1 s/python3.*$$/python/' debian/apport-retrace/usr/bin/apport-retrace + +override_dh_python3: + dh_python3 --skip-private --- apport-2.20.3.orig/debian/source/format +++ apport-2.20.3/debian/source/format @@ -0,0 +1 @@ +1.0 --- apport-2.20.3.orig/debian/tests/control +++ apport-2.20.3/debian/tests/control @@ -0,0 +1,19 @@ +Tests: upstream-system +Depends: apport, + apport-retrace, + apport-valgrind, + apport-gtk, + apport-kde, + build-essential, + python-twisted-core, + python3-mock, + xvfb, + xterm, + dbus-x11, + at-spi2-core, + gvfs-daemons, + gnome-icon-theme, + libglib2.0-dev, + libglib2.0-0-dbg, + libnih-dev +Restrictions: needs-root, allow-stderr --- apport-2.20.3.orig/debian/tests/upstream-system +++ apport-2.20.3/debian/tests/upstream-system @@ -0,0 +1,19 @@ +#!/bin/sh + +# do not run in the source tree, as we want to check the system-installed +# apport +TESTDIR=${ADTTMP:-/tmp}/apport-tests +mkdir -p $TESTDIR +cp test/test_* test/run "$TESTDIR" +cd "$TESTDIR" + +# clean up old crash reports +rm -rf /var/crash/* + +export GNUPGHOME=$TESTDIR/gnupg +mkdir -m 700 $GNUPGHOME + +./run +ret=$? +echo "Number of failed tests: $ret" +exit $ret --- apport-2.20.3.orig/debian/watch +++ apport-2.20.3/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://launchpad.net/apport/+download .*/apport-([0-9.]+)\.tar\.gz --- apport-2.20.3.orig/etc/apport/blacklist.d/apport +++ apport-2.20.3/etc/apport/blacklist.d/apport @@ -0,0 +1 @@ +/usr/bin/wine-preloader --- apport-2.20.3.orig/etc/apport/crashdb.conf +++ apport-2.20.3/etc/apport/crashdb.conf @@ -1,28 +1,33 @@ # map crash database names to CrashDatabase implementations and URLs -default = 'debug' +default = 'ubuntu' + +def get_oem_project(): + '''Determine OEM project name from Distribution Channel Descriptor + + Return None if it cannot be determined or does not exist. + ''' + try: + dcd = open('/var/lib/ubuntu_dist_channel').read() + if dcd.startswith('canonical-oem-'): + return dcd.split('-')[2] + except IOError: + return None databases = { - 'ubuntu': { + 'ubuntu': { 'impl': 'launchpad', + 'problem_types': ['Bug', 'Package'], 'bug_pattern_url': 'http://people.canonical.com/~ubuntu-archive/bugpatterns/bugpatterns.xml', 'dupdb_url': 'http://people.canonical.com/~ubuntu-archive/apport-duplicates', 'distro': 'ubuntu', 'escalation_tag': 'bugpattern-needed', 'escalated_tag': 'bugpattern-written', }, - 'fedora': { - # NOTE this will change Fall '07 when RHT switches to bugzilla 3.x! - 'impl': 'rhbugzilla', - 'bug_pattern_url': 'http://qa.fedoraproject.org/apport/bugpatterns.xml', - 'distro': 'fedora' - }, - 'debian': { - 'impl': 'debian', - 'distro': 'debian', - 'smtphost': 'reportbug.debian.org', - 'recipient': 'submit@bugs.debian.org', - 'sender': '' + 'canonical-oem': { + 'impl': 'launchpad', + 'bug_pattern_url': 'http://people.canonical.com/~ubuntu-archive/bugpatterns/bugpatterns.xml', + 'project': get_oem_project(), }, 'debug': { # for debugging --- apport-2.20.3.orig/gtk/apport-gtk +++ apport-2.20.3/gtk/apport-gtk @@ -2,7 +2,7 @@ '''GTK Apport user interface.''' -# Copyright (C) 2007-2012 Canonical Ltd. +# Copyright (C) 2007-2016 Canonical Ltd. # Author: Martin Pitt # # This program is free software; you can redistribute it and/or modify it @@ -13,6 +13,9 @@ import os.path, sys, subprocess, os, re +import gi +gi.require_version('Wnck', '3.0') +gi.require_version('GdkX11', '3.0') from gi.repository import GLib, Wnck, GdkX11, Gdk Gdk # pyflakes; needed for GdkX11 try: @@ -221,7 +224,7 @@ if xid: self.set_modal_for(xid) - if report_type == 'Hang': + if report_type == 'Hang' and self.offer_restart: self.w('ignore_future_problems').set_active(False) self.w('ignore_future_problems').hide() self.w('closed_button').show() @@ -279,7 +282,7 @@ pid = apport.ui.get_pid(self.report) still_running = pid and apport.ui.still_running(pid) - if 'ProcCmdline' not in self.report or still_running: + if 'ProcCmdline' not in self.report or still_running or not self.offer_restart: self.w('closed_button').hide() self.w('continue_button').set_label(_('Continue')) else: @@ -367,7 +370,7 @@ return_value['report'] = True if self.w('ignore_future_problems').get_active(): return_value['blacklist'] = True - if widget == self.w('continue_button') and self.desktop_info: + if widget == self.w('continue_button') and self.desktop_info and self.offer_restart: return_value['restart'] = True Gtk.main_quit() --- apport-2.20.3.orig/gtk/apport-gtk.desktop.in +++ apport-2.20.3/gtk/apport-gtk.desktop.in @@ -9,3 +9,4 @@ Categories=GNOME;GTK;Utility; NoDisplay=true StartupNotify=true +X-Ubuntu-Gettext-Domain=apport --- apport-2.20.3.orig/kde/apport-kde +++ apport-2.20.3/kde/apport-kde @@ -225,7 +225,7 @@ pid = apport.ui.get_pid(report) still_running = pid and apport.ui.still_running(pid) - if 'ProcCmdline' not in report or still_running: + if 'ProcCmdline' not in report or still_running or not self.ui.offer_restart: self.closed_button.hide() self.continue_button.setText(_('Continue')) else: @@ -377,7 +377,7 @@ return return_value text = self.dialog.continue_button.text().replace('&', '') - if response == 1 and text == _('Relaunch'): + if response == 1 and text == _('Relaunch') and self.offer_restart: return_value['restart'] = True if self.dialog.send_error_report.isChecked(): return_value['report'] = True --- apport-2.20.3.orig/kde/apport-kde-mime.desktop.in +++ apport-2.20.3/kde/apport-kde-mime.desktop.in @@ -9,3 +9,4 @@ Categories=KDE; NoDisplay=true StartupNotify=true +X-Ubuntu-Gettext-Domain=apport --- apport-2.20.3.orig/kde/apport-kde.desktop.in +++ apport-2.20.3/kde/apport-kde.desktop.in @@ -8,3 +8,4 @@ Categories=KDE;System; OnlyShowIn=KDE; StartupNotify=true +X-Ubuntu-Gettext-Domain=apport --- apport-2.20.3.orig/po/ace.po +++ apport-2.20.3/po/ace.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:14+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:45+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: \n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr "" -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "" @@ -57,11 +57,11 @@ msgid "Ignore future problems of this program version" msgstr "" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "" @@ -69,21 +69,21 @@ msgid "_Examine locally" msgstr "" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "" @@ -97,9 +97,10 @@ "you report." msgstr "" +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "" @@ -107,8 +108,8 @@ msgid "Uploading problem information" msgstr "" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -118,103 +119,103 @@ msgid "Apport crash file" msgstr "" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "" -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "" -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "" -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "" -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "" -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "" -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "" -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "" -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "" @@ -227,30 +228,31 @@ msgid "Destination directory exists and is not empty." msgstr "" -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." msgstr "" -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "" @@ -273,13 +275,13 @@ "Please enter your password to access problem reports of system programs" msgstr "" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "" -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "" @@ -320,9 +322,8 @@ "detection" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "" @@ -332,46 +333,46 @@ msgid "Error: %s is not an executable. Stopping." msgstr "" -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -381,72 +382,72 @@ "be able to retrace crashes that happened on the currently running release." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " "neither -g, -o, nor -s are specified)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "" #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " "and try again." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -455,121 +456,121 @@ "%s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -577,8 +578,8 @@ "Please create a new report using \"apport-bug\"." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -590,230 +591,230 @@ "Do you really want to proceed?" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " "a single argument is given.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " "ones in %s. (Implied if file is given as only argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " "machine." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " "occurred." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "" #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -821,22 +822,22 @@ "%s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " "helpful for the developers." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "" --- apport-2.20.3.orig/po/af.po +++ apport-2.20.3/po/af.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:14+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:45+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: af\n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr "" -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "" @@ -57,11 +57,11 @@ msgid "Ignore future problems of this program version" msgstr "" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "" @@ -69,21 +69,21 @@ msgid "_Examine locally" msgstr "" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "" @@ -97,9 +97,10 @@ "you report." msgstr "" +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "" @@ -107,8 +108,8 @@ msgid "Uploading problem information" msgstr "" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -118,103 +119,103 @@ msgid "Apport crash file" msgstr "" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "" -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "" -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "" -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "" -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "" -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "" -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "" -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "" -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "" @@ -227,30 +228,31 @@ msgid "Destination directory exists and is not empty." msgstr "" -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." msgstr "" -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "" @@ -273,13 +275,13 @@ "Please enter your password to access problem reports of system programs" msgstr "" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "" -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "" @@ -320,9 +322,8 @@ "detection" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "" @@ -332,46 +333,46 @@ msgid "Error: %s is not an executable. Stopping." msgstr "" -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -381,72 +382,72 @@ "be able to retrace crashes that happened on the currently running release." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " "neither -g, -o, nor -s are specified)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "" #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " "and try again." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -455,121 +456,121 @@ "%s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -577,8 +578,8 @@ "Please create a new report using \"apport-bug\"." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -590,230 +591,230 @@ "Do you really want to proceed?" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " "a single argument is given.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " "ones in %s. (Implied if file is given as only argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " "machine." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " "occurred." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "" #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -821,22 +822,22 @@ "%s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " "helpful for the developers." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "" --- apport-2.20.3.orig/po/am.po +++ apport-2.20.3/po/am.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:14+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:45+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: am\n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr "አዝናለሁ, የ ውስጥ ስህተት ተፈጥሯል" -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "" @@ -57,11 +57,11 @@ msgid "Ignore future problems of this program version" msgstr "" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "ዝርዝሮች ማሳያ" @@ -69,21 +69,21 @@ msgid "_Examine locally" msgstr "" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "ይቀጥሉ" @@ -97,9 +97,10 @@ "you report." msgstr "" +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "" @@ -107,8 +108,8 @@ msgid "Uploading problem information" msgstr "" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -118,103 +119,103 @@ msgid "Apport crash file" msgstr "" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "" -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "" -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "አዝናለሁ, %s የ ውስጥ ስህተት ተፈጥሯል" -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "የ ችግሩን መግለጫ ለ አበልጻጊዎቹ ልላክ?" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "መላኪያ" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "እንደገና ማስጀመሪያ" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "" -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "" -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "ጥቅል: %s" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "አዝናለሁ, ሶፍትዌሩ በሚገጠም ጊዜ ችግር ተፈጥሯል" -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "" -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "" -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "ዝርዝሮች መደበቂያ" @@ -227,30 +228,31 @@ msgid "Destination directory exists and is not empty." msgstr "" -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." msgstr "" -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "" @@ -273,13 +275,13 @@ "Please enter your password to access problem reports of system programs" msgstr "" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "" -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "" @@ -320,9 +322,8 @@ "detection" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "" @@ -332,46 +333,46 @@ msgid "Error: %s is not an executable. Stopping." msgstr "" -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -381,72 +382,72 @@ "be able to retrace crashes that happened on the currently running release." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " "neither -g, -o, nor -s are specified)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "" #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " "and try again." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -455,121 +456,121 @@ "%s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -577,8 +578,8 @@ "Please create a new report using \"apport-bug\"." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -590,230 +591,230 @@ "Do you really want to proceed?" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " "a single argument is given.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " "ones in %s. (Implied if file is given as only argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " "machine." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " "occurred." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "" #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -821,22 +822,22 @@ "%s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " "helpful for the developers." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "" --- apport-2.20.3.orig/po/an.po +++ apport-2.20.3/po/an.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:14+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:45+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: an\n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr "" -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "" @@ -57,11 +57,11 @@ msgid "Ignore future problems of this program version" msgstr "" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "" @@ -69,21 +69,21 @@ msgid "_Examine locally" msgstr "" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "" @@ -97,9 +97,10 @@ "you report." msgstr "" +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "" @@ -107,8 +108,8 @@ msgid "Uploading problem information" msgstr "" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -118,103 +119,103 @@ msgid "Apport crash file" msgstr "" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "" -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "" -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "" -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "" -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "" -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "" -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "" -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "" -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "" @@ -227,30 +228,31 @@ msgid "Destination directory exists and is not empty." msgstr "" -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." msgstr "" -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "" @@ -273,13 +275,13 @@ "Please enter your password to access problem reports of system programs" msgstr "" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "" -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "" @@ -320,9 +322,8 @@ "detection" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "" @@ -332,46 +333,46 @@ msgid "Error: %s is not an executable. Stopping." msgstr "" -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -381,72 +382,72 @@ "be able to retrace crashes that happened on the currently running release." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " "neither -g, -o, nor -s are specified)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "" #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " "and try again." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -455,121 +456,121 @@ "%s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -577,8 +578,8 @@ "Please create a new report using \"apport-bug\"." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -590,230 +591,230 @@ "Do you really want to proceed?" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " "a single argument is given.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " "ones in %s. (Implied if file is given as only argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " "machine." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " "occurred." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "" #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -821,22 +822,22 @@ "%s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " "helpful for the developers." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "" --- apport-2.20.3.orig/po/ar.po +++ apport-2.20.3/po/ar.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:14+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:45+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: ar\n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr "عُذرًا، حدث خطأ داخلي." -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "إذا لاحظت المزيد من المشاكل، جرّب إعادة تشغيل الحاسوب." @@ -57,11 +57,11 @@ msgid "Ignore future problems of this program version" msgstr "تجاهل الانهيارات المستقبلية لإصدارة البرنامج هذه" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "أظهر التفاصيل" @@ -69,21 +69,21 @@ msgid "_Examine locally" msgstr "" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "اتركه مغلقا" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "واصِل" @@ -98,9 +98,10 @@ msgstr "" "يجري جمع المعلومات التي قد تساعد المطورين في إصلاح المشكلة المبلغ عنها." +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "يرفع معلومات المشكلة" @@ -108,8 +109,8 @@ msgid "Uploading problem information" msgstr "يرفع معلومات المشكلة" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -121,103 +122,103 @@ msgid "Apport crash file" msgstr "" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "(بيانات ثنائية)" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "عُذرًا، توقف التطبيق \"%s\" فجأة" -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "عُذرًا، أُغلق \"%s\" فجأة." -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "عُذرًا، واجه \"%s\" خطأ داخليا." -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "أأبلغ المطورين عن المشكلة؟" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "أرسل" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "شغّله مجددا" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "" -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "" -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "الحزمة: %s" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "عُذرًا، حدث خطأ أثناء تثبيت البرنامج." -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "واجه تطبيق \"%s\" خطأ داخليا." -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "أُغلق تطبيق \"%s\" فجأة." -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "تجاهل الانهيارات المستقبلية لهذا النوع" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "أخفِ التفاصيل" @@ -230,24 +231,25 @@ msgid "Destination directory exists and is not empty." msgstr "" -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "اسم المستخدم:" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "كلمة السر:" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "يجمع معلومات عن المشكلة" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." @@ -255,7 +257,7 @@ "يمكن إرسال المعلومات التي جُمِعت إلى المطورين لتحسين التطبيق، قد يستغرق هذا " "بضع دقائق." -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "" @@ -278,13 +280,13 @@ "Please enter your password to access problem reports of system programs" msgstr "برجاء إدخال كلمة سرك للنفاذ إلى تقارير المشاكل لبرامج النظام" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "أبلغ عن مشكلة..." -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "أبلغ المطورين عن خلل" @@ -325,9 +327,8 @@ "detection" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "" @@ -337,46 +338,46 @@ msgid "Error: %s is not an executable. Stopping." msgstr "" -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "قد يصبح نظامك غير مستقر الآن وقد يحتاج لإعادة تشغيله." -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "اكتب تقرير مُعدّل للملف المُعطى بدلًا من تغيير التقرير الأصلي" -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -386,72 +387,72 @@ "be able to retrace crashes that happened on the currently running release." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " "neither -g, -o, nor -s are specified)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "" #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "هذه الحزمة لا تبدو مثبّتة بشكل صحيح" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " "and try again." msgstr "هذه ليست حزمة %s رسمية. رجاءً أزل أي حزم طرف ثالث وأعد المحاولة." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -464,80 +465,80 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "برنامج مجهول" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "عُذرًا، أُغلق برنامج \"%s\" فجأة" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "مشكلة في %s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." msgstr "" "لا توجد ذاكرة خالية كافية على الجهاز لتحليل المشكلة وإبلاغ المطورين آليا." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "بلاغ مشكلة غير صالح" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "غير مسموح لك بالنفاذ إلى بلاغ المشكلة هذا." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "خطأ" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "لا توجد مساحة قرص كافية لمعالجة هذا البلاغ." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "لم تُحدد حزمة" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "" "تحتاج إلى تحديد حزمة أو معرف عملية (PID). أطلع على --help لمزيد من المعلومات." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "رُفض التّصريح" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." @@ -545,44 +546,44 @@ "العملية المحددة لا تخصك. من فضلك شغل هذا البرنامج بنفس المستخدم مالك العملية " "أو كجذر." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "رقم عملية(PID)غير صحيح" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "رقم تعريف العملية المحدد لا ينتمي ﻷي برنامج." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "الحزمة %s غير موجودة" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "تعذّر إنشاء التقرير" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "يُحدّث تقرير المشكلة" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -594,8 +595,8 @@ "\n" "من فضلك أنشئ تقريرًا جديدًا باستخدام \"apport-bug\"." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -614,30 +615,30 @@ "\n" "هل تود المتابعة حقًا؟" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "لم تُجمع معلومات إضافية." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "ما نوع المشكلة التي تود الإبلاغ عنها؟" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "عَرَض غير معروف" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "العَرَض\"%s\" غير معروف." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." @@ -645,89 +646,89 @@ "بعد إغلاق هذه الرسالة رجاءً انقر على نافذة التطبيق للإبلاغ عن المشكلة " "المتعلقة بذلك." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "حدد اسم الحزمة." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " "a single argument is given.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "انقر على النافذة كهدف لتقديم بلاغ عن مشكلة." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " "ones in %s. (Implied if file is given as only argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " @@ -736,113 +737,113 @@ "في نمط الإبلاغ عن علّة، احفظ المعلومات المُجمّعة في ملف بدلًا من إرسالها. " "هذا الملف يمكن إرساله لاحقًا من جهاز حاسوب آخر." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "هذا سينفّذ أمر apport-retrace في نافذة طرفية لتحليل الانهيار." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "هذا البلاغ ينطبق على برنامج لم يعد مثبتًا على حاسوبك." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " "occurred." msgstr "حدثت المشكلة مع برنامج '%s' الذي تغير منذ حدوث الانهيار." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "بلاغ المشكلة هذا تالف ولا يمكن معالجته." #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "البلاغ لحزمة غير مثبتة." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "حدث خطأ أثناء محاولة معالجة تقرير الخطأ هذا:" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "تعذّر تحديد اسم الحزمة أو اسم الحزمة المصدر." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "تعذّر تشغيل المتصفح" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "تعذّر تشغيل المتصفح لفتح %s." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "برجاء إدخال معلومات حسابك لنظام تتبع العلل لـ %s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "مشكلة في الشبكة" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" "لا يمكن الاتصال بقاعدة بيانات الانهيارات. من فضلك تحقق من اتصالك بالإنترنت." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "نفذت الذاكرة" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "لا توجد ذاكرة كافية في النظام لمعالجة بلاغ الانهيار هذا." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -853,14 +854,14 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "المشكلة معروفة" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " @@ -869,8 +870,8 @@ "بُلّغ عن هذه المشكلة مسبقًا في بلاغ العِلة المعروض في المتصفح، تحقق من فضلك " "مما إذا كان باستطاعتك إضافة معلومات أخرى قد تساعد المطورين." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "بُلّغ عن هذه المشكلة مُسبقًا. شكرًا لك!" --- apport-2.20.3.orig/po/ast.po +++ apport-2.20.3/po/ast.po @@ -9,15 +9,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:14+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:45+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: ast\n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "" @@ -37,10 +37,10 @@ msgid "Sorry, an internal error happened." msgstr "Sentímoslo, asocedió una fallu internu." -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "Si sigues teniendo problemes, intenta rearrancar l'equipu." @@ -52,11 +52,11 @@ msgid "Ignore future problems of this program version" msgstr "Inorar problemes futuros d'esta versión de programa" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "Amosar detalles" @@ -64,21 +64,21 @@ msgid "_Examine locally" msgstr "_Desaminar llocalmente" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "Dexar zarrada" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "Siguir" @@ -94,9 +94,10 @@ "La información que tas esbillando puede aidar a los desendolcadores a igüar " "el problema que vas a notificar." +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "Unviando la información del problema" @@ -104,8 +105,8 @@ msgid "Uploading problem information" msgstr "Unviando información del problema" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -117,103 +118,103 @@ msgid "Apport crash file" msgstr "Ficheru de fallu d'Apport" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "(datos binarios)" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "Sentímoslo, l'aplicación %s detúvose inesperadamente." -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "Sentímoslo, %s zarróse de manera inesperada." -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "Sentímoslo, %s esperimentó un fallu internu." -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "¿Unviar un informe del problema a los desendolcadores?" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "Unviar" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "Forciar zarru" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "Rellanzar" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "L'aplicación %s dexó de responder." -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "El programa «%s» dexó de responder." -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "Paquete: %s" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "Sentímoslo, hebo un problema al instalar el software." -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "L'aplicación %s esperimentó un fallu internu." -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "L'aplicación %s zarróse inesperadamente." -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "Inorar problemes futuros d'esti tipu" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "Anubrir Detalles" @@ -226,30 +227,31 @@ msgid "Destination directory exists and is not empty." msgstr "El direutoriu de destín esiste y nun ta ermu." -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "Recopilando información del problema" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." msgstr "" -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "" @@ -276,13 +278,13 @@ "Escribi la to contraseña p'acceder a los informes de problemes de programes " "del sistema" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "Informar d'un problema..." -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "Notificar un mal furrulamientu a los desendolcadores" @@ -333,9 +335,8 @@ "l'executable que cuerre baxo'l complementu memcheck valgrind na deteición de " "fugues de memoria" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "" @@ -345,17 +346,17 @@ msgid "Error: %s is not an executable. Stopping." msgstr "Fallu: %s nun ye un executable. Parando." -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "" "El so sistema puede volvese inestable y ye dable que necesite reanicialu." -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "" "Nun poner les traces nueves nel informe, pero escribiles na salida estándar." -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" @@ -363,36 +364,36 @@ "Arrancar una sesión interactiva de gdb col volcáu de memoria del informe (-" "o inoráu; nun se reescribe l'informe)" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" "Escribir l'informe modificáu nel ficheru dau, n'arróu de camudar l'informe " "orixinal" -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "" "Desaniciar del informe el volcáu de memoria tres la rexeneración de la traza " "de la pila" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "Sobroscribir los informes de CoreFile" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "Sobroscribir los informes de ExecutablePath" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "Sobroscribir los informes de ProcMaps" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "Recontruyir la información d'informes de paquetes" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -402,27 +403,27 @@ "be able to retrace crashes that happened on the currently running release." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "" "Enteponer marques de tiempu pa rexistrar mensaxes, pa operación en llote " "(batch)" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." @@ -431,7 +432,7 @@ "cualesquier paquete yá descargáu estráise tamién a esta caxa de sable " "(sandbox)." -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " @@ -441,7 +442,7 @@ "fallos. Esto úsase cuando especifica un ID de fallu pa cargar una pila de " "rastros reconstituyíos (namái si nun s'especifiquen nin -g, nin -o nin -s" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." @@ -449,29 +450,29 @@ "Amosar la pila de rastros reconstituyíos y pidir confirmación enantes " "d'unviales a la base de datos d'errores" -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" "Camín a la base de datos sqlite duplicada (por omisión: ensin comprobación " "de duplicáu)" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "Nun pues usar -C ensin -S. Parando." #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "¿D'alcuerdu n'unviar esto como axuntos? [y/n]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "Esti paquete nun paez tar instaláu correcho" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " @@ -480,8 +481,8 @@ "Esti nun ye un paquete oficial de %s. Desinstala cualquier paquete de " "terceros ya inténtalo de nueves." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -494,26 +495,26 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "programa desconocíu" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "Sentimoslo; el programa «%s» zarróse inesperadamente" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "Problema en %s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." @@ -521,56 +522,56 @@ "El to equipu nun tien memoria llibre suficiente p'analizar el problema " "automáticamente y unviar un informe a los desendolcadores." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "Informe de problema incorreutu" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "Nun tienes permitíu acceder a esti informe de problema." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "Fallu" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "" "Nun hai suficiente espaciu de discu disponible pa procesar esti informe." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "Nun s'especificó dengún paquete" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "" "Necesites especificar un paquete o un PID. Consulta --help pa más " "información." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "Permisu denegáu" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." @@ -578,44 +579,44 @@ "El procesu especificáu nun te pertenez. Executa esti programa como " "propietariu del procesu o como superusuariu." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "PID incorreutu" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "El ID de procesu especificáu nun pertenez a dengún programa." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "El paquete %s nun esiste" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -623,8 +624,8 @@ "Please create a new report using \"apport-bug\"." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -636,66 +637,66 @@ "Do you really want to proceed?" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "¿De qué triba de problema quier informar?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "Síntoma desconocíu" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "El síntoma «%s» ye desconocíu" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" "%prog [opciones] [síntomes|pid|paquete|camín pal programa|.apport/.crash]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " @@ -705,18 +706,18 @@ "opcional, o sólo un --pid. Si nun s'apurre dengún, amuesa una llista de " "síntomes conocíos. (Implícitu si s'apurre un únicu argumentu.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" @@ -724,8 +725,8 @@ "Rellenar un informe de fallu sobre un síntoma. (Implícitu si s'apurre un " "nome de síntoma como únicu argumentu.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" @@ -734,21 +735,21 @@ "pid s'especifica. (Implícitu si se dió un nome de paquete como un únicu " "argumentu)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "El pid proporcionáu ye una aplicación colgada." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " @@ -758,51 +759,51 @@ "llugar de los pendientes en %s. (Implícitu si s'indica el ficheru como únicu " "argumentu.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " "machine." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "Amosar el númberu de versión d'Apport" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "Esto executará apport-retrace nuna terminal pa desaminar el fallu." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "Executar una sesión gdb" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "Executar una sesión gdb ensin descargar símbolos de depuración" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "Anovar %s con una pila de siguimientu completamente simbólica" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "Esti informe de problema aplícase a un programa que nun ta instaláu." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " @@ -810,75 +811,75 @@ msgstr "" "El problema ocurrió col programa %s, que camudó dende qu'asocedió'l fallu." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "L'informe del problema ta frayáu y nun puede procesase." #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "L'informe remanez d'un paquete non instaláu." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "Hebo un fallu mentanto s'intentaba procesar l'informe de fallu:" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "Nun pudo determinase'l nome del paquete binariu o fonte." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "Nun puede arrancase'l restolador web" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "Nun puede arrancase'l restolador web p'abrir %s." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "" "Introduza la información de la so cuenta pal sistema de seguimientu de " "fallos de %s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "Problemes cola rede" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" "Nun puede afitase la conexón cola base de datos d'errores, por favor, " "verifique la so conexón a Internet." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "Memoria escosada" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "" "El to sistema nun tien la memoria suficiente pa procesar esti informe de " "fallu." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -889,14 +890,14 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "Problema yá conocíu" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " @@ -906,8 +907,8 @@ "restolador web. Por favor, comprueba si puedes amestar cualesquier " "información adicional que pudieres resultar d'utilidá a los desendolcadores." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "Ya s'informó d'esti problema a los desendolcadores. ¡Gracies!" --- apport-2.20.3.orig/po/az.po +++ apport-2.20.3/po/az.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:14+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:45+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: az\n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr "" -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "" @@ -57,11 +57,11 @@ msgid "Ignore future problems of this program version" msgstr "" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "" @@ -69,21 +69,21 @@ msgid "_Examine locally" msgstr "" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "" @@ -97,9 +97,10 @@ "you report." msgstr "" +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "" @@ -107,8 +108,8 @@ msgid "Uploading problem information" msgstr "" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -118,103 +119,103 @@ msgid "Apport crash file" msgstr "" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "" -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "" -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "" -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "" -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "" -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "" -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "" -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "" -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "" @@ -227,30 +228,31 @@ msgid "Destination directory exists and is not empty." msgstr "" -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." msgstr "" -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "" @@ -273,13 +275,13 @@ "Please enter your password to access problem reports of system programs" msgstr "" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "" -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "" @@ -320,9 +322,8 @@ "detection" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "" @@ -332,46 +333,46 @@ msgid "Error: %s is not an executable. Stopping." msgstr "" -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -381,72 +382,72 @@ "be able to retrace crashes that happened on the currently running release." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " "neither -g, -o, nor -s are specified)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "" #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " "and try again." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -455,121 +456,121 @@ "%s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -577,8 +578,8 @@ "Please create a new report using \"apport-bug\"." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -590,230 +591,230 @@ "Do you really want to proceed?" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " "a single argument is given.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " "ones in %s. (Implied if file is given as only argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " "machine." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " "occurred." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "" #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -821,22 +822,22 @@ "%s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " "helpful for the developers." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "" --- apport-2.20.3.orig/po/be.po +++ apport-2.20.3/po/be.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:14+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:45+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: be\n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "Apport" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr "Выбачайце, паўстала ўнутраная памылка." -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "Калі праблема з'явіцца зноў, паспрабуйце перазагрузіць кампутар." @@ -57,11 +57,11 @@ msgid "Ignore future problems of this program version" msgstr "Ігнараваць далейшыя збоі ў гэтай версіі праграмы" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "Паказаць падрабязнасці" @@ -69,21 +69,21 @@ msgid "_Examine locally" msgstr "_Лакальная праверка" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "Пакінуць зачыненым" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "Працягнуць" @@ -99,9 +99,10 @@ "Адбываецца збор інфармацыі, якая можа дапамагчы распрацоўшчыкам выправіць " "гэтую памылку." +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "Перадача інфармацыі аб непаладцы" @@ -109,8 +110,8 @@ msgid "Uploading problem information" msgstr "Перадача звестак аб няспраўнасці" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -122,103 +123,103 @@ msgid "Apport crash file" msgstr "Файл справаздачы Apport" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "(двайковыя дадзеныя)" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "Выбачайце, прылада %s нечакана прыпынілася." -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "Выбачайце, %s нечакана зачынілася." -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "Прабачце, у %s адбылася ўнутраная памылка." -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "Даслаць распрацоўшчыкам паведамленне аб праблеме?" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "Даслаць" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "Прымусовае закрыццё" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "Перазапусціць" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "Дадатак %s перастаў адказваць." -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "Праграма \"%s\" перастала адказваць." -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "Пакет: %s" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "Прабачце, пры ўсталяванні адбылася памылка." -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "У дадатку %s адбылася ўнутраная памылка." -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "Дастасаванне %s нечакана зачынілася." -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "Ігнараваць такія праблемы ў будучыні" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "Схаваць падрабязнасці" @@ -231,24 +232,25 @@ msgid "Destination directory exists and is not empty." msgstr "Тэчка прызначэння існуе і яна не пустая." -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "Імя карыстальніка:" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "Пароль:" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "Збор інфармацыі аб праблеме" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "Збор інфармацыі аб праблеме" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." @@ -256,7 +258,7 @@ "Сабраную інфармацыю можна даслаць распрацоўшчыкам, каб палепшыць " "прыкладанне. Гэта можа заняць некалькі хвілін." -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "Перадача інфармацыі аб непаладцы" @@ -283,13 +285,13 @@ "Калі ласка, увядзіце пароль для доступу да справаздач пра памылкі ў " "сістэмных праграмах" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "Паведаміць аб праблеме..." -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "Паведаміць аб недапрацоўцы распрацоўшчыкам" @@ -339,9 +341,8 @@ "выкананы файл, які запускаецца пад кантролем valgrind memcheck для " "вызначэння уцечак памяці" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "" @@ -353,16 +354,16 @@ msgid "Error: %s is not an executable. Stopping." msgstr "Памылка: %s - не выканальны файл. Прыпынак." -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "Сістэма можа стаць нестабільнай, магчыма спатрэбіцца перазагрузка." -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "" "Не дадаваць новыя трасіроўкі ў справаздачу, а адсылаць на стандартны вывад." -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" @@ -370,33 +371,33 @@ "Запусціць інтэрактыўны сеанс gdb з дампам ядра са справаздачы (-o " "ігнаруецца; справаздача не перазапісваецца)" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" "Захаваць змененую справаздачу ў файл замест змены арыгінальнай справаздачы" -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "Выдаліць дамп ядра са справаздачы пасля ўзнаўлення трасіроўкі стэка" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "Замяніць CoreFile у справаздачы" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "Замяніць ExecutablePath у справаздачы" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "Замяніць ProcMaps у справаздачы" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "Нанава пабудаваць інфармацыю аб пакетах у справаздачы" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -413,30 +414,30 @@ "ў выпадку выяўлення аварыйных сітуацый, якія адбыліся ў выпуску сістэмы, які " "працуе ў дадзены момант." -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" "Паведамляць аб ходзе выканання загрузкі / ўсталёўкі пакетаў у часовае " "асяроддзе" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "" "Дадаваць часовыя пазнакі да паведамленняў у часопісе, для групавых аперацый" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" "Стварэнне і выкарыстанне іншых сховішчаў на аснове зыходных, указаных у " "справаздачах" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "Тэчка для захавання пакетаў, загружаных у часовае асяроддзе" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." @@ -444,7 +445,7 @@ "Дырэкторыя для распакавання пакетаў. Пры наступных запусках ўсё ўжо " "загружаны пакеты будуць распакоўваць ў гэта ізаляванае асяроддзе." -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " @@ -454,7 +455,7 @@ "Выкарыстоўваецца пры ўказанні ID збою для адпраўкі трасіровак стэка (толькі " "калі -g, -o ці -s не пазначаныя)" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." @@ -462,29 +463,29 @@ "Адлюстраваць трасіроўкі і запытаць пацверджанне перад іх адпраўкай у базу " "дадзеных збояў." -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" "Шлях да дублюючай базы дадзеных sqlite (па змаўчанні: без праверкі " "дублікатаў)" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "Нельга выкарыстоўваць -C без -S. Прыпынак." #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "Адправіць гэтыя дастасаванні? [y/n]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "Падобна на тое, што гэты пакет усталяваны неправільна" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " @@ -493,8 +494,8 @@ "Дадзены пакет %s не з'яўляецца афіцыйным. Калі ласка, выдаліце ўсе староннія " "пакеты і паўторыце зноў." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -507,26 +508,26 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "невядомая праграма" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "Прабачце, праграма «%s» аварыйна завяршыла сваю работу" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "Праблема ў %s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." @@ -534,55 +535,55 @@ "На Вашым кампутары недастаткова вольнай памяці для таго, каб аўтаматычна " "прааналізаваць няспраўнасць і даслаць справаздачу распрацоўшчыкам." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "Няправільная справаздача аб памылцы" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "У Вас не хапае правоў, каб паведамляць аб праблемах." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "Памылка" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "Недастаткова месца на дыску для апрацоўкі дадзенай справаздачы." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "Не пазначаны пакет" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "" "Неабходна пазначыць пакет альбо PID. Запусціце праграму з параметрам --help " "каб атрымаць дадатковую інфармацыю." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "Доступ забаронены" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." @@ -590,44 +591,44 @@ "Пазначаны працэс запушчэны іншым карыстальнікам. Запусціце дадзеную праграму " "з правамі ўладальніка працэса альбо адміністратара сістэмы." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "Памылковы PID" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "Пазначаны PID належыць іншаму працэсу." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "Сімптаматычны скрыпт %s ня можа вызначыць закрануты пакет" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "Пакет %s не існуе" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "Нельга стварыць справаздачу" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "Абнаўленне справаздачы аб праблеме" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -637,8 +638,8 @@ "Вы не з'яўляецеся аўтарам альбо атрымальнікам гэтай справаздачы аб праблеме, " "магчыма яна ўжо існуе ці была зачыненая." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -658,30 +659,30 @@ "\n" "Вы сапраўды хочаце працягнуць?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "Не сабрана ніякай дадатковай інфармацыі." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "Пра які тып праблемы Вы хочаце паведаміць?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "Невядомы сімптом" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "Сімптом \"%s\" невядомы." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." @@ -689,38 +690,38 @@ "Пасля закрыцця гэтага паведамлення, калі ласка, націсніце на вакно " "прыкладання, каб паведаміць аб праблеме." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "xprop не ўдалося вызначыць ID працэсу акна" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "%prog <нумар справаздачы>" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "Пазначце імя пакета." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "" "Дадаць дадатковы тэг да справаздачы. Можа быць паказаны некалькі разоў." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" "%prog [параметры] [прыкмета|pid|пакет|шлях да праграмы|.apport/.crash файл]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " @@ -731,19 +732,19 @@ "адлюстроўвае спіс вядомых сімптомаў. (Ужываецца, калі перададзены адзіны " "параметр.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "Цокніце па намечаным акне каб запоўніць справаздачу аб праблеме." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "" "Запусціць у рэжыме абнаўлення памылкі. Можа прымаць дадатковы ключ - package." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" @@ -751,8 +752,8 @@ "Адправіць справаздачу аб памылцы з сімптомам. (Ужываецца, калі назва " "сімптома перададзена ў якасці адзінага параметра.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" @@ -760,8 +761,8 @@ "Пазначыць імя пакета ў рэжыме --file-bug. Неабавязкова, калі пазначаны --" "pid. (Ужываецца, калі імя пакета перададзена ў якасці адзінага праметра.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " @@ -771,13 +772,13 @@ "справаздача аб памылцы будзе ўтрымліваць больш інфармацыі. (Маецца на ўвазе, " "што пазначаны адзіны аргумент - pid.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "Згаданы ідэнтыфікатар належыць працэсу, які не адказвае." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " @@ -787,8 +788,8 @@ "ччакаемых у %s. (Ужываецца, калі файл перададзены ў якасці адзінага " "параметра.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " @@ -798,45 +799,45 @@ "файле замест яе адпраўкі. Гэты файл можна будзе адправіць пазней, ці з " "іншага кампутара." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "Раздрукаваць нумар версіі Apport ." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "" "Будзе ажыццёўлены запуск «apport-retrace» у акне тэрміналу для праверкі " "аварыйнага завяршэння працы." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "Запусціць сеанс gdb" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "Запусціць сеанс gdb, абыходзячы загрузкі адладкавых сімвалаў" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "Абнавіць %s з поўным адсочваннем сімвалічнага стэку" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "Дадзеная справаздача адносіцца да праграмы, якая не ўсталявана." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " @@ -845,74 +846,74 @@ "Праблема ў праграме %s, да якой былі ўнесены змены з моманту аварыйнага " "завяршэння яе работы." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "Дадзеная справаздача аб непаладцы пашкоджана і не можа апрацоўвацца." #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "Справаздача датычыцца пакета, які не быў усталяваны." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "Адбылася памылка пры спробе апрацоўкі справаздачы:" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "Немагчыма вызначыць імя пакету альбо крыніцы." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "Не атрымалася запусціць вэб-браўзэр" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "Немагчыма запусціць вэб-браўзэр, каб адчыніць %s." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "" "Калі ласка, увядзіце інфармацыю аб уліковым запісы для %s сістэмы сачэння " "за памылкамі" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "Праблема з сеткай" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" "Не атрымоўваецца падлучыцца да базы дадзеных па збоях, калі ласка, праверце " "падлучэнне да Інтэрнэту." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "Нястача памяці" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "" "У сістэме недастаткова памяці для апрацоўкі дадзенай справаздачы аб памылцы." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -923,14 +924,14 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "Праблема ўжо вядомая" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " @@ -940,8 +941,8 @@ "Вашым браўзэры. Калі ласка, праверце, ці можаце Вы дадаць да яе карысную " "інфармацыю, якая магла бы дапамагчы распрацоўшчыкам." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "Аб гэтай праблеме распрацоўнікам ужо вядома. Дзякуй!" --- apport-2.20.3.orig/po/bg.po +++ apport-2.20.3/po/bg.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:14+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:46+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: bg\n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "Apport" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr "Извинете, възникна вътрешна грешка." -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "" "Ако се сблъскате с този проблем в бъдеще, опитайте да рестартирате компютъра." @@ -59,11 +59,11 @@ msgid "Ignore future problems of this program version" msgstr "Игнорирай бъдещи проблеми с тази версия на програмата" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "Покажи детайлите" @@ -71,21 +71,21 @@ msgid "_Examine locally" msgstr "_Локална проверка" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "Остави затворено" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "Продължи" @@ -101,9 +101,10 @@ "Бива събирана информация, която може да помогне на разработчиците да " "поправят проблема, който докладвате." +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "Прехвърляне на информация за проблема" @@ -111,8 +112,8 @@ msgid "Uploading problem information" msgstr "Качване на информация за проблем" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -124,103 +125,103 @@ msgid "Apport crash file" msgstr "Apport файл с доклад за срив" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "(двоични данни)" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "Извинете, приложението %s внезапно спря." -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "Извинете, %s беше затворено неочаквано." -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "Извинете, възникна вътрешна грешка в %s." -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "Да се изпраща ли доклад за грешка до разработчиците?" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "Изпрати" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "Принудително затваряне" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "Стартирай отново" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "Приложението «%s» престана да отговаря." -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "Програмата «%s» престана да отговаря." -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "Пакет: %s" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "Извинете, възникна проблем при инсталирането на софтуер." -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "В приложението %s възникна вътрешна грешка." -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "Приложението %s внезапно се затвори." -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "Игнорирай бъдещи проблеми от този тип" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "Скрий детайлите" @@ -233,30 +234,31 @@ msgid "Destination directory exists and is not empty." msgstr "" -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "Потребителско име:" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "Парола:" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "Събиране на информация за проблема" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "Събиране на информация за проблема" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." msgstr "" -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "Прехвърляне на информация за проблема" @@ -283,13 +285,13 @@ "Моля, въведете паролата си за достъп до докладите за проблеми на системни " "програми" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "Докладвай за проблем..." -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "Докладвай за неизправност на разработчиците" @@ -341,9 +343,8 @@ "изпълним файл, който стартира под контрола на valgrind memcheck за откриване " "на изтичане на памет" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "" @@ -355,17 +356,17 @@ msgid "Error: %s is not an executable. Stopping." msgstr "Грешка: %s не е изпълним файл. Спиране." -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "" "Сега вашата система може да стане нестабилна и да се наложи да я " "рестартирате." -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" @@ -373,35 +374,35 @@ "Стартирай интерактивна gbg сесия с дъмпа от ядрото на доклада (-о " "игнорирано; не презаписва доклада)." -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" "Съхрани модифициран доклад с дадено име на файл вместо променяне на " "оригиналния доклад." -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "" "Изтрий дъмпа от ядрото от доклада след регенериране трасирането на стека." -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "Замени CoreFile в доклада" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "Замени ExecutablePath в доклада" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "Замени ProcMaps в доклада" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "Изгради наново пакетната информация в доклада" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -418,28 +419,28 @@ "но само в случай на извънредни ситуации, възникнали в изданието на " "работещата в момента система." -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" "Докладвай за напредъка при сваляне/инсталиране на пакети във времената среда" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "" "Добави временни отметки до съобщенията в дневника за групови операции" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "" "Кеш директория за съхраняване на пакетите, изтеглени във времената среда" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." @@ -447,41 +448,41 @@ "Директория за разопаковане на пакети. Когато повторение всички вече " "изтеглени пакети ще се разопаковат в тази времена среда." -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " "neither -g, -o, nor -s are specified)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" "Път към дублираната sqlite база данни (стандартно: без проверка за дублиране)" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "Не може да се използва без -C без -S. Спиране." #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "Да се изпрати ли прикаченото? [y/n]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "Този пакет не изглежда да е инсталиран правилно" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " @@ -490,8 +491,8 @@ "Това не е официален %s пакет. Моля, премахнете пакетите от трети страни и " "опитайте отново." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -504,26 +505,26 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "неизвестна програма" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "Извинете, програмата «%s» аварийно се затвори" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "Проблем в %s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." @@ -531,53 +532,53 @@ "Вашият компютър няма достатъчно свободна памет, за да се анализира " "автоматично проблема и да изпрати доклада на разработчиците." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "Невалиден доклад с проблем" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "Нямате достъп до този доклад за проблем." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "Грешка" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "Няма достатъчно свободно място за обработка на този доклад." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "Не е указан пакет" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "Трябва да укажете пакет или PID. Вижте --help за повече информация." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "Достъпа е отказан" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." @@ -585,44 +586,44 @@ "Указаният процес не ви принадлежи. Моля, стартирайте тази програма от името " "на собственика на процеса или като root потребител." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "Невалиден PID" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "Указания идентификатор не принадлежи на програма." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "Симптомният скрипт %s не може да определи засегнат пакет" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "Пакета %s не съществува" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "Не може да бъде създаден доклад" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "Актуализиране на доклада за проблема" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -633,8 +634,8 @@ "доклада да е дублиран или вече е затворен.\n" "Моля създайте нов доклад като използвате «apport-bug»." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -654,30 +655,30 @@ "\n" "Наистина ли искате да продължите?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "Не е събрана допълнителна информация." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "Какъв вид проблем искате да докладвате?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "Неизвестен симптом" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "Симптомът «%s» е неизвестен." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." @@ -685,39 +686,39 @@ "След като затворите това съобщение, моля кликнете на прозореца на " "приложението, за да докладвате за този проблем." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "xprop неуспя да определи идентификатора на процеса за прозореца" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "%prog <номер на доклада>" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "Посочете име на пакета." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "" "Добавете допълнителен етикет към доклада си. Може да бъде указан няколко " "пъти." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" "%prog [параметри] [признак|pid|пакет|път до програмата|.apport/.crash файл]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " @@ -727,20 +728,20 @@ "pid, или само --pid. Ако не е подаден аргумент се показва списък с известни " "симптоми. (Стандартно ако е подаден единствен аргумент.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "Кликнете на целевият прозорец, за да попълните доклад за грешка." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "" "Стартиране в режим на обновяване на грешка. Приема се аргумент по избор --" "package." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" @@ -748,8 +749,8 @@ "Регистриране на доклад за грешка относно симптом. (Стандартно ако името на " "симптома е подадено като единствен аргумент.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" @@ -757,8 +758,8 @@ "Посочете името на пакета в --file-bug режима. Това е по избор ако --pid e " "посочен. (Стандартно ако името на пакета е подадено като единствен аргумент.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " @@ -768,13 +769,13 @@ "доклада за грешка ще съдържа повече информация. (Стандартно ако pid е даден " "като единствен аргумент.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "Посоченият идентификатор принадлежи на процес, който не отговаря." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " @@ -783,55 +784,55 @@ "Докладване на срив от даден .apport или .crash файл вместо от висящите в %s. " "(Стандартно ако файла е подаден като единствен аргумент.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " "machine." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "Отпечатай номера на версията на Apport." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "" "Ще се стартира «apport-retrace» в терминален прозорец и ще извърши проверка " "на аварийното завършване на работата." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "Стартирай gdb сесия" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "" "Стартирай gdb сесия без изтегляне на символите за отстраняване на грешки" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "" "Актуализирай %s с пълно проследяване на символичното трасиране на стека" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "Проблемът се отнася за програма, която вече не е инсталирана." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " @@ -840,75 +841,75 @@ "Проблемът възникна с програмата %s, в която са внесени промени след нейното " "аварийно завършване на работа." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "Този доклад за проблем е повреден и не може да бъде обработен." #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "Доклада се отнася за пакет, който не е инсталиран." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "Възникна грешка при обработката на този доклад за проблем:" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "" "Не може да бъде определено името на пакета или на пакета с изходния код." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "Не може да се стартира уеб браузъра" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "Не може да се стартира уеб браузъра, за да се отвори %s." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "" "Моля въведете вашите потребителски данни за %s системата за следене за грешки" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "Мрежов проблем" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" "Не може да се свърже с базата данни за сривове, моля проверете връзката с " "интернет." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "Изчерпване на паметта" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "" "Вашата система не разполага с достатъчно памет, за да обработи този доклад " "за срив." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -919,14 +920,14 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "Проблемът вече е известен" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " @@ -936,8 +937,8 @@ "браузъра ви. Моля, проверете дали можете да добавите друга полезна " "информация, която може да помогне на разработчиците." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "Този проблем вече е бил докладван на разработчиците. Благодарим ви!" --- apport-2.20.3.orig/po/bn.po +++ apport-2.20.3/po/bn.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:14+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:45+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: bn\n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr "দুঃখিত, আভ্যন্তরীন ত্রুটি ঘটেছে।" -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "" "যদি আপনি অতিরিক্ত কোন সমস্যা উল্লেখ করেন, কম্পিউটার পুনরায় আরম্ভ করার " @@ -59,11 +59,11 @@ msgid "Ignore future problems of this program version" msgstr "এই প্রোগ্রাম সংস্করনের ভবিষ্যত সমস্যা উপেক্ষা করুন" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "বিস্তারিত প্রদর্শন করুন" @@ -71,21 +71,21 @@ msgid "_Examine locally" msgstr "স্থানীয়ভাবে পরীক্ষা করুন (_E)" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "পরিত্যাগ পরিবেষ্টিত" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "চালিয়ে যান" @@ -99,9 +99,10 @@ "you report." msgstr "" +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "" @@ -109,8 +110,8 @@ msgid "Uploading problem information" msgstr "" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -120,103 +121,103 @@ msgid "Apport crash file" msgstr "" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "" -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "দুঃখিত, %s অপ্রত্যাশিতভাবে বন্ধ হয়ে গেছে।" -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "দুঃখিত, %s অভ্যন্তরীণ ত্রুটি অভিজ্ঞ হয়েছে।" -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "পাঠান" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "পুনরায় আরম্ভ করুন" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "" -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "" -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "প্যাকেজ: %s" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "দুঃখিত, সফটওয়্যার ইন্সটল করার সময় সমস্যা হয়েছে।" -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "" -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "অ্যাপ্লিকেশন %s অপ্রত্যাশিতভাবে বন্ধ হয়ে গেছে।" -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "এই ধরণের ভবিষ্যৎ সমস্যা উপেক্ষা করুন" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "বিস্তারিত আড়াল করুন" @@ -229,30 +230,31 @@ msgid "Destination directory exists and is not empty." msgstr "" -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." msgstr "" -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "" @@ -275,13 +277,13 @@ "Please enter your password to access problem reports of system programs" msgstr "" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "" -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "" @@ -322,9 +324,8 @@ "detection" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "" @@ -334,46 +335,46 @@ msgid "Error: %s is not an executable. Stopping." msgstr "" -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -383,64 +384,64 @@ "be able to retrace crashes that happened on the currently running release." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "ব্যাচ অপারেশনের জন্য, বার্তা লগ করতে টাইমস্ট্যাম্প শুরুতে যোগ করুন" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " "neither -g, -o, nor -s are specified)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "" #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "এই প্যাকেজ সঠিকরূপে ইনস্টল করা যাবেনা বলে মনে হচ্ছে" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " @@ -449,8 +450,8 @@ "এটি একটি অফিসিয়াল %s প্যাকেজ নয়। অনুগ্রহ করে কোনো তৃতীয় পক্ষের প্যাকেজ " "অপসারণ করুন এবং পুনরায় চেষ্টা করুন।" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -459,26 +460,26 @@ "%s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "অজানা প্রোগ্রাম" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "দুঃখিত, \"%s\" প্রোগ্রামটি অপ্রত্যাশিতভাবে বন্ধ হয়ে গেল" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "%s এ সমস্যা" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." @@ -486,96 +487,96 @@ "স্বয়ংক্রিয়ভাবে সমস্যাটি পর্যালোচনা করা এবং ডেভেলপারদেরকে রিপোর্ট করার জন্য " "আপনার কম্পিউটারে পর্যাপ্ত পরিমাণ খালি মেমোরি নেই।" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "অবৈধ সমস্যা রিপোর্ট" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "এই সমস্যা রিপোর্টটিতে আপনার প্রবেশাধিকার নেই।" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "ত্রুটি" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "কোন প্যাকেজ নির্দিষ্ট করা হয় নি" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "অনুমতি প্রত্যাখ্যাত" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "%s প্যাকেজের অস্তিত্ব নেই" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -583,8 +584,8 @@ "Please create a new report using \"apport-bug\"." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -596,162 +597,162 @@ "Do you really want to proceed?" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "কি ধরণের সমস্যা আপনি রিপোর্ট করতে চান?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "অজানা লক্ষণ" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "\"%s\" লক্ষণটি পরিচিত নয়।" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " "a single argument is given.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " "ones in %s. (Implied if file is given as only argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " "machine." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "" "ক্র্যাশ পরীক্ষা করতে টার্মিনালের উইন্ডোর অ্যাপোর্ট-অনুসন্ধান চালু করা হবে।" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "gdb সেশনে সচল" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "ডিবাগ প্রতীকে ডাউনলোড করা ছাড়া gdb সেশনে সচল" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "সম্পূর্ণ প্রতীকী স্ট্যাক ট্রেস দ্বারা %s হালনাগাদ করুন" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " @@ -759,72 +760,72 @@ msgstr "" "প্রোগ্রাম %s দ্বারা সমস্যা ঘটেছে, ক্র্যাশ সংঘটন হতে যা পরিবর্তিত হয়েছে।" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "" #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "এই সমস্যা প্রতিবেদন প্রক্রিয়াকরণ প্রচেষ্টার সময় একটি ত্রুটি ঘটেছে:" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "ওয়েব ব্রাউজার চালু করতে অসমর্থ" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "%s খুলতে ওয়েব চালু করতে অসমর্থ" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "%s বাগ পর্যবেক্ষণ সিস্টেমের জন্য আপনার অ্যাকাউন্টের তথ্য দিন" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "নেটওয়ার্ক সমস্যা" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" "বিধস্ত ডাটাবেসে সংযোগ করতে পারছি না, অনুগ্রহ করে আপনার ইন্টারনেট সংযুক্তি " "পরীক্ষা করুন।" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "" "এই বিধস্ত রিপোর্ট প্রক্রিয়াজাত করার জন্য আপনার সিস্টেমে পর্যাপ্ত মেমোরি নেই।" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -835,22 +836,22 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "সমস্যাটি ইতঃপূর্ব জ্ঞাত" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " "helpful for the developers." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "এই সমস্যাটি ইতোমধ্যে ডেভেলপারকে প্রতিবেদন করা হয়েছে। আপনাকে ধন্যবাদ!" --- apport-2.20.3.orig/po/br.po +++ apport-2.20.3/po/br.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:14+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:45+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: br\n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr "" -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "" @@ -57,11 +57,11 @@ msgid "Ignore future problems of this program version" msgstr "" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "" @@ -69,21 +69,21 @@ msgid "_Examine locally" msgstr "" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "" @@ -97,9 +97,10 @@ "you report." msgstr "" +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "" @@ -107,8 +108,8 @@ msgid "Uploading problem information" msgstr "" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -118,103 +119,103 @@ msgid "Apport crash file" msgstr "" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "" -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "" -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "" -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "" -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "" -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "" -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "" -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "" -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "" @@ -227,30 +228,31 @@ msgid "Destination directory exists and is not empty." msgstr "" -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." msgstr "" -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "" @@ -273,13 +275,13 @@ "Please enter your password to access problem reports of system programs" msgstr "" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "" -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "" @@ -320,9 +322,8 @@ "detection" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "" @@ -332,46 +333,46 @@ msgid "Error: %s is not an executable. Stopping." msgstr "" -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -381,72 +382,72 @@ "be able to retrace crashes that happened on the currently running release." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " "neither -g, -o, nor -s are specified)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "" #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " "and try again." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -455,121 +456,121 @@ "%s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -577,8 +578,8 @@ "Please create a new report using \"apport-bug\"." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -590,230 +591,230 @@ "Do you really want to proceed?" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " "a single argument is given.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " "ones in %s. (Implied if file is given as only argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " "machine." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " "occurred." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "" #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -821,22 +822,22 @@ "%s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " "helpful for the developers." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "" --- apport-2.20.3.orig/po/bs.po +++ apport-2.20.3/po/bs.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:14+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:45+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: bs\n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "Apport" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr "Nažalost, desila se interna greška." -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "Ako primjetite dodatne probleme, pokušajte ponovo pokrenuti računar." @@ -57,11 +57,11 @@ msgid "Ignore future problems of this program version" msgstr "Ignoriši buduće probleme ove verzije programa" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "Prikaži detalje" @@ -69,21 +69,21 @@ msgid "_Examine locally" msgstr "_Ispitaj lokalno" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "Ostavi zatvoreno" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "Nastavi" @@ -99,9 +99,10 @@ "Prikupljaju se informacije koje mogu da pomognu autorima u rješavanju " "problema koji ste prijavili." +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "Šaljem informaciju o problemu" @@ -109,8 +110,8 @@ msgid "Uploading problem information" msgstr "Šaljem informaciju o problemu" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -122,103 +123,103 @@ msgid "Apport crash file" msgstr "Apport datoteka urušavanja" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "(binarni podaci)" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "Nažalost, aplikacija %s se zaustavila neočekivano." -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "Nažalost, %s je neočekivano zatvoren." -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "Nažalost, u %s se desila interna greška." -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "Želite li da pošaljete izvještaj autorima?" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "Pošalji" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "Forsiraj zatvoreno." -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "Ponovo pokreni" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "Aplikacija %s ne odgovara." -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "Program \"%s\" je prestao odgovarati." -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "Paket: %s" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "Nažalost, desio se problem pri instalaciji programa." -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "Aplikacija %s je imala internu grešku." -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "Program %s je neočekivano zatvoren." -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "Ignoriši buduće probleme ove vrste" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "Sakrij detalje" @@ -231,24 +232,25 @@ msgid "Destination directory exists and is not empty." msgstr "Odredišni direktorij postoji i nije prazan." -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "Korisničko ime:" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "Šifra:" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "Prikupljanje informacija o problemu" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "Prikupljanje informacija o problemu" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." @@ -256,7 +258,7 @@ "Sakupljene informacije će biti poslane razvojnom timu kako bi poboljšali " "program. Ovo može potrajati par minuta." -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "Šaljem informaciju o problemu" @@ -283,13 +285,13 @@ "Molimo unesite svoju šifru kako bi pristupili izvještaju o problemima " "nastalim u sistemskim programima" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "Prijavi problem..." -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "Prijavi greške u radu autorima" @@ -340,9 +342,8 @@ "izvršni program koji se pokreće pod valgrind memcheck za otkrivanje otivanja " "memorije" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "" @@ -353,15 +354,15 @@ msgid "Error: %s is not an executable. Stopping." msgstr "Greška: %s nije izvršni program. Prekidam." -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "Ne unosi nove tragove u izvještaj, već ih zapisuje u ''stdout''." -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" @@ -369,34 +370,34 @@ "Pokreće interaktivnu ''gdb'' sesiju sa jezgrom pripremljenog izvještaja (-o " "ignorisano; neće prepisati izvještaj)" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" "Zapisuje izmijenjeni izvještaj u zadatu datoteku umjesto da mijenja " "originalni." -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "Uklanja prikaz jezgra iz izvještaja nakon regeneracije traga gomile" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "Zaobiđi JezgruDatoteke izvještaja" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "Zaobiđi IzvršnuPutanju izvještaja" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "Zamenjuje ProcMaps izveštaja" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "Obnavlja izveštajnu informaciju paketa" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -412,28 +413,28 @@ "biti u mogućnosti uloviti trag sistemskim padovima koji su se desili na " "trenutno izvršavajućoj verziji." -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" "Prijavi napredak preuzimanja/instaliranja pri instaliranju paketa u " "zatvorenu kutiju" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "Pridodaj oznaku vremena porukama dnevnika, za grupnu radnju" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" "Kreirajte i koristite tuđe repozitorije sa izvora navedenih u izvještajima" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "Keš direktorij za pakete preuzete u zatvorenu kutiju" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." @@ -441,7 +442,7 @@ "Direktorij za otpakovane pakete. Buduća pokretanja pretpostaviti da su već " "preuzeti paketi takođe izdvojeni u zatvorenu kutiju." -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " @@ -451,7 +452,7 @@ "urušavanja. Ovo se koristi kada navodite ID urušavanja da biste poslali " "pronađene tragove steka (samo ako ni -g, ni -o, ni -s nisu navedeni)" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." @@ -459,29 +460,29 @@ "Prikazuje pronađene tragove steka i traži potvrdu prije nego što ih pošalje " "u bazu podataka o urušavanjima." -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" "Putanja do duplikata ''sqlite'' baze podataka (inicijalno: ne vršiti " "provjeru duplikata)" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "Ne možete koristiti -C bez -S. Prekidam." #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "Da li je uredu da da šaljete ovo kao prilog? [y/n]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "Izgleda da ovaj paket nije ispravno instaliran" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " @@ -490,8 +491,8 @@ "Ovo nije zvaničan %s paket. Uklonite neki paket treće strane i pokušajte " "opet." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -504,26 +505,26 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "nepoznat program" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "Izvinite, program „%s“ je neočekivano zatvoren" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "Problem u %s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." @@ -531,53 +532,53 @@ "Vaš računar nema dovoljno slobodne memorije da automatski analizira problem " "i pošalje izvještaj autorima." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "Neispravan izvještaj o problemu" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "Nemate prava pristupa izvještavanju o problemu." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "Greška" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "Nema dovoljno prostora na disku za obradu ovog izvještaja." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "Nije naveden paket." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "Morate navesti paket ili PID. Pogledajte --help za više informacija" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "Dozvola je odbijena" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." @@ -585,44 +586,44 @@ "Navedeni proces vam ne pripada. Molim pokrenite ovaj proces kao vlasnik ili " "root." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "Nevažeći PID" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "Specificirani PID ne pripada programu." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "Skripta simptoma %s nije odredio nijedan poduticajni paket" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "Paket %s ne postoji" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "Ne mogu da napravim izvještaj" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "Slanje izveštaja o problemu" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -634,8 +635,8 @@ "\n" "Molim napravite novi izvještaj koristeći \"apport-bug\"." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -654,30 +655,30 @@ "\n" "Da li zaista želite da nastavite?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "Nema dodatno prikupljenih informacija." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "O kakvom problemu želite da izvijestite?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "Nepoznati simptom" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "Simptom \"%s\" nije poznat." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." @@ -685,37 +686,37 @@ "Nakon zatvaranja ove poruke, kliknite na prozor aplikacije da prijavite " "problem u vezi toga." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "xprop nije uspio da odredi ID procesa prozora" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "%prog " -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "Navedite ime paketa." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "Dodajte dodatnu oznaku u izvještaju. Može biti navedeno više puta." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" "%prog [opcije] [symptom|pid|package|program path|.apport/.crash file]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " @@ -725,20 +726,20 @@ "opcionalan --pid, ili samo --pid. Ako nijedan nije dat, prikaži listu " "poznatih simptoma. (Podrazumijeva se ako ako je dat samo jedan argument.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "" "Kliknite na prozor kao odredište za podnošenje izvještaja o problemu." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "" "Pokrenuti u režimu slanja greške. Može da sadrži opcionalni --package." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" @@ -746,8 +747,8 @@ "Popunite izvještaj greške o simptomu. (Podrazumijeva se ako je ime simptoma " "dato kao jedini argument.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" @@ -756,8 +757,8 @@ "specificiran --pid. (Podrazumijeva se ako je ime paketa dato kao jedini " "argument.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " @@ -767,13 +768,13 @@ "izvještaj o greškama će sadržati više informacija. (ugrađeno ako je PID kao " "jedini argument.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "Navedeni pid je viseća aplikacija" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " @@ -782,8 +783,8 @@ "Prijavite o padu iz date .apport ili .crash datoteke umjesto jednog " "pripravnog u %s. (Podrazumijeva se ako je datoteka data kao jedini argument.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " @@ -793,44 +794,44 @@ "umjesto da izvještavanja. Ova datoteka se zatim može prijaviti kasnije s " "druge mašine." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "Prikaži broj verzije Apport-a." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "Ovo će pokrenuti „apport-retrace“ u prozoru terminala da ispita pad." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "Pokreni gdb sesiju" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "Pokreni gdb sesiju bez preuzimanja simbola za uklanjanje grešaka" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "Ažuriraj %s potpunom simboličkim tragom gomile" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "" "Ovaj izvještaj o problemu se odnosi na program koji nije više instaliran." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " @@ -838,73 +839,73 @@ msgstr "" "Problem se desio s programom %s koji je promijenjen nakon što se dogodio pad." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "Ovaj izvještaj o greški je oštećen i ne može da se obradi." #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "Izvještaj pripada paketu koji nije instaliran." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "Desila se greška u pokušaju obrade izvještaja o problemu:" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "Ne mogu da utvrdim paket ili izvorno ime paketa." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "Ne mogu da pokrenem internet pretraživač" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "Ne mogu da pokrenem internet pretraživač da bih otvorio %s." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "" "Molim unesite vaše informacije o članstvu za %s sistem praćenja grešaka." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "Mrežni problem" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" "Ne mogu da uspostavim vezu sa bazom podataka o urušavanjima, molim " "provjerite vašu internet vezu." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "Nedostatak memorije" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "" "Vaš sistem nema dovoljno memorije da obradi ovaj izvještaj o padu sistema." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -915,14 +916,14 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "Problem je već poznat" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " @@ -932,8 +933,8 @@ "pretraživaču. Molim Vas provjerite da li možete da dodate bilo kakvu dodatnu " "informaciju koja bi mogla da bude od pomoći autorima." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "Ovaj problem je već prijavljen programerima. Hvala vam!" --- apport-2.20.3.orig/po/ca.po +++ apport-2.20.3/po/ca.po @@ -15,15 +15,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:14+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:46+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: \n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "Apport" @@ -43,10 +43,10 @@ msgid "Sorry, an internal error happened." msgstr "S'ha produït un error intern." -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "Si observeu altres problemes, intenteu reiniciar l'ordinador." @@ -58,11 +58,11 @@ msgid "Ignore future problems of this program version" msgstr "Ignora els problemes d'aquesta versió del programa en el futur" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "Mostra els detalls" @@ -70,21 +70,21 @@ msgid "_Examine locally" msgstr "_Examina localment" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "Mantén-la tancada" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "Continua" @@ -100,9 +100,10 @@ "S'està recollint informació que pot ajudar els desenvolupadors a solucionar " "el problema del qual esteu informant." +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "S'està pujant la informació del problema" @@ -110,8 +111,8 @@ msgid "Uploading problem information" msgstr "S'està pujant informació sobre el problema" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -123,103 +124,103 @@ msgid "Apport crash file" msgstr "Fitxer de fallada de l'Apport" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "(dades binàries)" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "L'aplicació %s s'ha aturat inesperadament." -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "%s s'ha tancat inesperadament." -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "%s ha experimentat un error intern." -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "Voleu enviar l'informe del problema als desenvolupadors?" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "Envia" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "Força el tancament" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "Torna-la a executar" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "L'aplicació %s ha deixat de respondre." -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "El programa «%s» ha deixat de respondre." -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "Paquet: %s" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "S'ha produït un problema mentre s'instal·lava el programa." -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "L'aplicació %s ha experimentat un error intern." -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "L'aplicació %s s'ha tancat inesperadament." -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "En el futur ignora problemes d'aquest tipus" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "Oculta els detalls" @@ -232,24 +233,25 @@ msgid "Destination directory exists and is not empty." msgstr "El directori de destinació existeix i no està buit." -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "Nom d'usuari:" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "Contrasenya:" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "S'està recollint informació sobre el problema" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "S'està recollint informació sobre el problema" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." @@ -257,7 +259,7 @@ "La informació recollida es pot enviar als desenvolupadors per a millorar " "l'aplicació. Això pot trigar uns quants minuts." -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "S'està pujant la informació del problema" @@ -284,13 +286,13 @@ "Introduïu la vostra contrasenya per accedir als informes d'error dels " "programes del sistema" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "Informeu d'un problema..." -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "Informeu els desenvolupadors sobre un funcionament erroni" @@ -340,9 +342,8 @@ "El nom del fitxer executable que s'inicia a través de l'eina «memcheck» del " "Valgrind per detectar pèrdues de memòria" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "" @@ -354,19 +355,19 @@ msgid "Error: %s is not an executable. Stopping." msgstr "S'ha produït un error: %s no és un fitxer executable. S'aturarà." -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "" "Pot ser que el vostre sistema esdevingui ara inestable i que l'hàgiu de " "reiniciar." -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "" "En lloc de posar les traces noves a l'informe escriviu-les a la sortida " "estàndard." -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" @@ -374,36 +375,36 @@ "Inicieu una sessió interactiva del gdb amb el bolcat de memòria de l'informe " "(-o s'ignorarà; no torna a escriure l'informe)" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" "Escriviu l'informe modificat en el fitxer proporcionat en lloc de canviar " "l'informe original" -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "" "Suprimiu el bolcat de memòria de l'informe després de la regeneració de la " "traça de la pila" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "Sobreescriu el CoreFile de l'informe" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "Sobreescriu l'ExecutablePath de l'informe" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "Sobreescriu el ProcMaps de l'informe" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "Torna a construir la informació del paquet de l'informe" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -420,30 +421,30 @@ "configuració del sistema però només es podran seguir les fallades que hagin " "passat a la versió actualment en execució." -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" "Informa del progrés de la baixada/instal·lació quan s'instal·lin paquets a " "l'entorn de proves" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "" "Afegeix marques horàries als missatges del registre per poder-los processar " "en lot" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" "Crea i usa repositoris de tercers a partir de fonts especificades a informes" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "Directori temporal per als paquets baixats a l'entorn de proves" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." @@ -452,7 +453,7 @@ "assumiran que qualsevol paquet que s'hagi baixat també s'ha extret en aquest " "entorn de proves." -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " @@ -462,7 +463,7 @@ "fallades. S'utilitza quan s'especifica un identificador d'error per a pujar " "les traces de pila tornades a traçar (només si no s'especifiquen -g, -o o -s)" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." @@ -470,29 +471,29 @@ "Mostra les traces de pila tornades a traçar i demana confirmació abans " "d'enviar-les a la base de dades de fallades." -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" "Camí a la base de dades sqlite de duplicats (per defecte: sense comprovació " "de duplicat)" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "No podeu utilitzar l'opció -C sense l'opció -S. S'interromprà." #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "Esteu d'acord en enviar-los com a adjuncions? [y/n]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "Sembla ser que aquest paquet no s'ha instal·lat correctament" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " @@ -501,8 +502,8 @@ "Aquest no és un paquet oficial del %s. Suprimiu tots els paquets de tercers " "i torneu-ho a provar." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -515,26 +516,26 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "programa desconegut" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "El programa «%s» s'ha tancat de manera inesperada" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "Problema a %s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." @@ -542,55 +543,55 @@ "El vostre sistema no té prou memòria disponible per a analitzar el problema " "de manera automàtica i enviar un informe d'error als desenvolupadors." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "Informe d'error no vàlid" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "No teniu permís per a accedir a aquest informe d'error." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "Error" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "No hi ha prou espai disponible per a processar aquest informe." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "No s'ha especificat cap paquet" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "" "Cal que especifiqueu un paquet o un PID. Consulteu --help per a obtenir més " "informació." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "Se us ha denegat el permís" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." @@ -598,44 +599,44 @@ "El procés especificat no us pertany. Hauríeu d'executar aquest programa com " "a propietari del procés o bé com a superusuari." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "PID no vàlid" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "L'identificador de procés especificat no pertany a cap programa." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "L'script de símptomes %s no ha determinat cap paquet afectat" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "El paquet %s no existeix" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "No es pot crear l'informe" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "S'està actualitzant l'informe del problema" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -647,8 +648,8 @@ "\n" "Creeu un informe nou utilitzant l'«apport-bug»." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -669,30 +670,30 @@ "\n" "Segur que voleu continuar?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "No s'ha recollit informació addicional." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "Sobre quin tipus de problema voleu informar?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "Símptoma desconegut" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "Es desconeix el símptoma «%s»." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." @@ -700,40 +701,40 @@ "Després de tancar aquest missatge feu clic a una finestra de l'aplicació per " "informar d'un problema sobre aquesta." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "" "L'xprop ha fallat en determinat l'identificador de procés de la finestra" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "%prog " -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "Especifiqueu el nom del paquet." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "" "Afegeix una etiqueta addicional a l'informe. Es pot especificar diverses " "vegades." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" "%prog [opcions] [símptoma|pid|paquet|camí al programa|fitxer .apport/.crash]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " @@ -743,19 +744,19 @@ "opcional o només un --pid. Si no se'n proporciona cap, es mostrarà una " "llista de símptomes coneguts. (Implícit si només es proporciona un argument)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "Feu clic a una finestra per associar-la a l'informe d'error." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "" "Inicieu en mode d'actualització d'errors. Admet un --package opcional." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" @@ -763,8 +764,8 @@ "Ompliu un informe d'error sobre un símptoma. (Implícit si només es " "proporciona el nom del símptoma com a argument)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" @@ -773,8 +774,8 @@ "s'ha especificat un --pid. (Implícit si només es proporciona el nom del " "paquet com a argument)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " @@ -784,13 +785,13 @@ "l'informe d'error contindrà més informació (en cas que el pid es doni com a " "únic argument)." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "El PID proporcionat és una aplicació que es penja." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " @@ -799,8 +800,8 @@ "Informeu de la fallada a partir d'un fitxer .apport o .crash en lloc dels " "pendents a %s. (Implícit si només es proporciona el fitxer com a argument)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " @@ -810,47 +811,47 @@ "en lloc d'enviar l'informe. Aquest fitxer es pot enviar més tard des d'una " "màquina diferent." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "Mostra el número de versió de l'Apport." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "" "Això executarà l'Apport-retrace en un terminal per examinar la fallada." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "Executa una sessió del Gdb" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "" "Executa una sessió del Gdb sense descarregar els símbols de depuració" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "Actualitza el fitxer %s amb la traça simbòlica completa de la pila." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "" "Aquest informe de problema fa referència a un programa que ja no està " "instal·lat." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " @@ -859,78 +860,78 @@ "El problema ha passat amb el programa %s, el qual ha canviat des que es " "produí la fallada." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "Aquest informe d'error està malmès i no es pot processar." #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "L'informe és per a un paquet que no està instal·lat." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "" "S'ha produït un error mentre s'intentava processar l'informe d'error:" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "" "No s'ha pogut determinar el nom del paquet del programa o del paquet del " "codi font." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "No s'ha pogut iniciar el navegador web" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "No s'ha pogut iniciar el navegador web per a obrir %s." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "" "Introduïu la informació del vostre compte per al sistema de seguiment " "d'errors %s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "Problema de la xarxa" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" "No es pot connectar a la base de dades de fallades, comproveu la vostra " "connexió a Internet." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "Exhauriment de la memòria" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "" "El vostre sistema no té prou memòria disponible per a processar aquest " "informe de fallada." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -941,14 +942,14 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "El problema ja és conegut" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " @@ -958,8 +959,8 @@ "al navegador web. Comproveu si podeu afegir cap informació addicional que " "pugui ser d'ajuda per als desenvolupadors." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "" "Aquest problema ja fou enviat als desenvolupadors anteriorment. Us agraïm la " --- apport-2.20.3.orig/po/ca@valencia.po +++ apport-2.20.3/po/ca@valencia.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:16+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:47+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: \n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr "S'ha produït un error intern." -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "Si observeu altres problemes, intenteu reiniciar l'ordinador." @@ -57,11 +57,11 @@ msgid "Ignore future problems of this program version" msgstr "Ignora els problemes d'esta versió del programa en el futur" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "Mostra els detalls" @@ -69,21 +69,21 @@ msgid "_Examine locally" msgstr "_Examina localment" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "Mantén-la tancada" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "Continua" @@ -97,9 +97,10 @@ "you report." msgstr "" +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "" @@ -107,8 +108,8 @@ msgid "Uploading problem information" msgstr "" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -118,103 +119,103 @@ msgid "Apport crash file" msgstr "" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "L'aplicació %s s'ha aturat inesperadament." -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "%s s'ha tancat inesperadament." -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "%s ha experimentat un error intern." -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "Envia" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "Força el tancament" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "Torna-la a executar" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "L'aplicació %s ha deixat de respondre." -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "El programa «%s» ha deixat de respondre." -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "Paquet: %s" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "S'ha produït un problema mentre s'instal·lava el programa." -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "L'aplicació %s ha experimentat un error intern." -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "L'aplicació %s s'ha tancat inesperadament." -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "En el futur ignora problemes d'este tipus" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "Oculta els detalls" @@ -227,30 +228,31 @@ msgid "Destination directory exists and is not empty." msgstr "" -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." msgstr "" -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "" @@ -277,13 +279,13 @@ "Introduïu la vostra contrasenya per accedir als informes d'error dels " "programes del sistema" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "" -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "" @@ -332,9 +334,8 @@ "El nom del fitxer executable que s'inicia a través de l'eina «memcheck» del " "Valgrind per detectar pèrdues de memòria" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "" @@ -346,46 +347,46 @@ msgid "Error: %s is not an executable. Stopping." msgstr "S'ha produït un error: %s no és un fitxer executable. S'aturarà." -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -402,29 +403,29 @@ "configuració del sistema però només es podran seguir les fallades que hagen " "passat a la versió actualment en execució." -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" "Informa del progrés de la baixada/instal·lació quan s'instal·len paquets a " "l'entorn de proves" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "" "Afig marques horàries als missatges del registre per poder-los processar en " "lot" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "Directori temporal per als paquets baixats a l'entorn de proves" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." @@ -433,40 +434,40 @@ "assumiran que qualsevol paquet que s'haja baixat també s'ha extret en este " "entorn de proves." -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " "neither -g, -o, nor -s are specified)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "No podeu utilitzar l'opció -C sense l'opció -S. S'interromprà." #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "Pareix ser que este paquet no s'ha instal·lat correctament" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " @@ -475,8 +476,8 @@ "Este no és un paquet oficial del %s. Suprimiu tots els paquets de tercers i " "torneu-ho a provar." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -485,121 +486,121 @@ "%s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -607,8 +608,8 @@ "Please create a new report using \"apport-bug\"." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -620,99 +621,99 @@ "Do you really want to proceed?" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "Especifiqueu el nom del paquet." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "" "Afig una etiqueta addicional a l'informe. Es pot especificar diverses " "vegades." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " "a single argument is given.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " @@ -722,66 +723,66 @@ "l'informe d'error contindrà més informació (en cas que el pid es doni com a " "únic argument)." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "El PID proporcionat és una aplicació que es penja." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " "ones in %s. (Implied if file is given as only argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " "machine." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "" "Això executarà l'Apport-retrace en un terminal per examinar la fallada." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "Executa una sessió del Gdb" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "" "Executa una sessió del Gdb sense descarregar els símbols de depuració" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "Actualitza el fitxer %s amb la traça simbòlica completa de la pila." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " @@ -790,70 +791,70 @@ "El problema ha passat amb el programa %s, el qual ha canviat des que es " "produí la fallada." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "" #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "" "S'ha produït un error mentre s'intentava processar l'informe d'error:" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -861,22 +862,22 @@ "%s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " "helpful for the developers." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "" "Este problema ja fou enviat als desenvolupadors anteriorment. Vos agraïm la " --- apport-2.20.3.orig/po/ce.po +++ apport-2.20.3/po/ce.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:14+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:46+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: ce\n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr "" -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "" @@ -57,11 +57,11 @@ msgid "Ignore future problems of this program version" msgstr "" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "" @@ -69,21 +69,21 @@ msgid "_Examine locally" msgstr "" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "" @@ -97,9 +97,10 @@ "you report." msgstr "" +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "" @@ -107,8 +108,8 @@ msgid "Uploading problem information" msgstr "" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -118,103 +119,103 @@ msgid "Apport crash file" msgstr "" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "" -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "" -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "" -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "" -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "" -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "" -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "" -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "" -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "" @@ -227,30 +228,31 @@ msgid "Destination directory exists and is not empty." msgstr "" -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." msgstr "" -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "" @@ -273,13 +275,13 @@ "Please enter your password to access problem reports of system programs" msgstr "" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "" -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "" @@ -320,9 +322,8 @@ "detection" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "" @@ -332,46 +333,46 @@ msgid "Error: %s is not an executable. Stopping." msgstr "" -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -381,72 +382,72 @@ "be able to retrace crashes that happened on the currently running release." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " "neither -g, -o, nor -s are specified)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "" #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " "and try again." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -455,121 +456,121 @@ "%s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -577,8 +578,8 @@ "Please create a new report using \"apport-bug\"." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -590,230 +591,230 @@ "Do you really want to proceed?" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " "a single argument is given.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " "ones in %s. (Implied if file is given as only argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " "machine." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " "occurred." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "" #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -821,22 +822,22 @@ "%s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " "helpful for the developers." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "" --- apport-2.20.3.orig/po/cs.po +++ apport-2.20.3/po/cs.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:14+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:46+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: cs\n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "Apport" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr "Omlouváme se, nastala vnitřní chyba." -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "Pokud problémy neustanou, zkuste restartovat počítač." @@ -57,11 +57,11 @@ msgid "Ignore future problems of this program version" msgstr "Ignorovat budoucí problémy této verze programu" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "Zobrazit podrobnosti" @@ -69,21 +69,21 @@ msgid "_Examine locally" msgstr "_Prozkoumat místně" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "Ponechat uzavřené" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "Pokračovat" @@ -99,9 +99,10 @@ "Shromažďují se informace, které mohou pomoci vývojářům opravit vámi " "nahlášený problém." +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "Odesílání informací o problému" @@ -109,8 +110,8 @@ msgid "Uploading problem information" msgstr "Odesílání informací o problému" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -122,103 +123,103 @@ msgid "Apport crash file" msgstr "Soubor apport crash" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "(binární data)" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "Omlouváme se, aplikace %s byla neočekávaně ukončena." -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "Omlouváme se, %s byl neočekávaně ukončen." -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "Omlouváme se, %s zaznamenal vnitřní chybu." -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "Odeslat hlášení o problému vývojářům?" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "Odeslat" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "Násilně ukončeno" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "Restartovat" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "Aplikace %s neodpovídá." -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "Program %s neodpovídá." -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "Balík: %s" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "Omlouváme se, při instalaci softwaru nastala chyba." -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "V aplikaci %s došlo k chybě." -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "Aplikace %s byla neočekávaně ukončena." -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "Ignorovat budoucí problémy tohoto typu" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "Skrýt podrobnosti" @@ -231,24 +232,25 @@ msgid "Destination directory exists and is not empty." msgstr "Cílový adresář existuje a není prázdný." -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "Uživatelské jméno:" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "Heslo:" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "Shromažďování informací o problému" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "Shromažďování informací o problému" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." @@ -256,7 +258,7 @@ "Shromážděné informace mohou být zaslány vývojářům za účelem případného " "vylepšení aplikace. Odesílání může trvat několik minut." -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "Odesílání informací o problému" @@ -283,13 +285,13 @@ "Zadejte prosím své heslo, aby mohl být problém systémového programu " "reportován." -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "Nahlásit problém..." -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "Oznámit problém vývojářům" @@ -338,9 +340,8 @@ msgstr "" "spustitelný soubor, který běží pod testem paměti valgrind na únik paměti" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "Nainstalovat do sandboxu extra balík (může být vybráno vícekrát)" @@ -350,17 +351,17 @@ msgid "Error: %s is not an executable. Stopping." msgstr "Chyba: %soubor není spustitelný. Ukončuji proces." -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "" "Váš systém může být nyní nestabilní a bude jej možná nutné restartovat." -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "" "Nepřidávejte do hlášení další sledování, přesměrujte je na standardní výstup." -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" @@ -368,35 +369,35 @@ "Spusťte interaktivní gdb úlohu s hlášením core dump (-případně ignorujte; " "nepřepisujte report)" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" "Zapsat upravené hlášení do daného souboru místo změny původního hlášení" -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "" "Odstraňte core dump z hlášení potom, co bude výstupní hlášení znovu " "vygenerováno" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "Potlačit zprávy CoreFile" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "Potlačit zprávy ExecutablePath" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "Potlačit zprávy ProcMaps" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "Obnovit zprávy o informacích o balíčcích" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -412,25 +413,25 @@ "\"system\", tak budou použity systémové konfigurační soubory, ale pak bude " "možné retrasovat havárie pouze u právě spuštěné verze." -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "Hlásit postup stahování/instalace při instalaci balíčků do sandboxu" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "Pro dávkové zpracování vložit časové razítko před zpávu do logu" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "Vytvořit a použít repozitáře třetích stran pocházející z hlášení" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "Kešovací adresář pro stažené balíčky do sandboxu" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." @@ -438,7 +439,7 @@ "Adresář pro rozbalené soubory. V budoucnu by tam měly být k dispozici " "všechny stažené a rozbalené balíky." -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " @@ -448,7 +449,7 @@ "použit k nahrání retrasovaných trasování zásobníku (pouze pokud není použit " "parametr -g, -o nebo -s)" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." @@ -456,27 +457,27 @@ "Zobrazit retasované trasování zásobníku a poptat na potvrzení před jejich " "odesláním do databáze havárií." -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "Cesta k duplikátu databáze sqlite (výchozí: žádná kontrola duplicit)" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "Nelze užít -C bez -S. Zastavuji proces." #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "Souhlasíte s odesláním těchto jako příloh? [y/n]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "Tento balík zřejmě není nainstalován správně" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " @@ -485,8 +486,8 @@ "Toto není oficiální %s balík. Prosíme odstraňte všechny balíky třetích stran " "a zkuste to znovu." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -499,26 +500,26 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "neznámý program" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "Omlouváme se, program \"%s\" byl neočekávaně uzavřen" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "Problém v %s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." @@ -526,55 +527,55 @@ "Váš počítač nemá dostatek volné paměti pro automatickou analýzu problému a " "odeslání hlášení vývojářům." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "Neplatné hlášení o problému" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "Nemáte oprávnění k přístupu k tomuto hlášení problému." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "Chyba" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "Pro zpracování tohoto hlášení není na disku dost místa." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "Nebyl specifikován žádný balík" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "" "Musíte určit, o který balík nebo PID se jedná. Pro více informací použijte " "přepínač --help." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "Přístup odepřen" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." @@ -582,44 +583,44 @@ "Nejste vlastníkem vybraného procesu. Prosím, spusťte tuto aplikaci jako " "vlastník onoho procesu nebo jako root." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "Neplatný PID" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "Zadané ID procesu neodpovídá žádnému programu." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "Skript %s neurčuje problematický balík" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "Balík %s neexistuje" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "Nelze vytvořit hlášení" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "Probíhá aktualizace chybového hlášení" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -631,8 +632,8 @@ "\n" "Vytvořte prosím nové hlášení pomocí \"apport-bug\"." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -652,66 +653,66 @@ "\n" "Opravdu chcete pokračovat?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "Nebyly shromážděny žádné další informace." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "Jaký druh problému si přejete nahlásit?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "Neznámý příznak" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "Příznak \"%s\" je neznámý." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." msgstr "Po uzavření této zprávy klikněte na okno s nahlášením problému." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "xprop selhal při rozeznávávání ID procesu okna" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "%prog <číslo hlášení>" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "Upřesněte název balíku." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "Přidejte do hlášení další tagy - může jich být více." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" "%prog [přepínače] [příznak|pid|balík|cesta k programu|soubor .apport/.crash]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " @@ -721,18 +722,18 @@ "pid, nebo pouze --pid. Pokud není zadán ani jeden, zobrazí se seznam známých " "příznaků. (Použito, pokud je zadán jediný argument.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "Kliknutím vyberte okno pro vytvoření hlášení o chybě." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "Spustit režim aktualizace chyb. Může mít volbu --packages" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" @@ -740,8 +741,8 @@ "Podat hlášení o chybě o příznaku. (Použito, pokud je zadán název příznaku " "jako jediný argument.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" @@ -749,8 +750,8 @@ "Určit název balíku v režimu --file-bug. Toto je volitelné, pokud je určeno --" "pid. (Použito, pokud je zadán název balíku jako jediný argument.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " @@ -760,13 +761,13 @@ "hlášení obsahovat více informací. (Je-li číslo procesu uvedeno jako jediný " "argument.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "Poskytnuté pid je zamrzlá aplikace." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " @@ -776,8 +777,8 @@ "některých nevyřízených z %s. (Použito, pokud je zadán soubor jako jediný " "argument.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " @@ -786,116 +787,116 @@ "Uložte hlášení do souboru namísto přímého reportování. Tento soubor může být " "nahlášen později nebo z jiného počítače." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "Vypsat číslo verze Apport." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "Tímto spustíte apport-retrace v terminálovém okně." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "Spustit gdb" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "Spustit gdb bez stahování debugovacích symbolů" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "Aktualizovat %s pomocí úplného symbolického trasování zásobníku" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "" "Toto hlášení o problému se týká programu, který již není nainstalován." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " "occurred." msgstr "Problém byl zaznamenán v programu %s, který byl od pádu změněn." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "Toto hlášení o problému je poškozené a nemůže být zpracováno." #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "Toto hlášení náleží k balíku, který není nainstalován." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "Při zpracování chybového hlášení došlo k chybě:" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "Nelze určit název balíku nebo zdrojového balíku." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "Nelze spustit webový prohlížeč" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "Nelze spustit webový prohlížeč a otevřít %s." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "Zadejte prosím informace o svém účtu k systému pro sledování chyb %s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "Problém se sítí" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" "Nelze se připojit k databází havárií, prosím zkontrolujte své internetové " "připojení." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "Vyčerpání paměti" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "" "Váš systém nemá dostatek paměti pro zpracování tohoto hlášení o havárii." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -906,14 +907,14 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "Problém je již znám" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " @@ -923,8 +924,8 @@ "prohlížeči. Prosím zkontrolujte, zda můžete přidat další informace, které by " "mohly být vývojářům nápomocné." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "Tato chyba byla vývojářům již ohlášena. Děkujeme!" --- apport-2.20.3.orig/po/cv.po +++ apport-2.20.3/po/cv.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:14+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:46+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: cv\n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr "" -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "" @@ -57,11 +57,11 @@ msgid "Ignore future problems of this program version" msgstr "" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "" @@ -69,21 +69,21 @@ msgid "_Examine locally" msgstr "" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "" @@ -97,9 +97,10 @@ "you report." msgstr "" +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "" @@ -107,8 +108,8 @@ msgid "Uploading problem information" msgstr "" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -118,103 +119,103 @@ msgid "Apport crash file" msgstr "" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "" -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "" -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "" -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "" -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "" -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "" -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "" -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "" -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "" @@ -227,30 +228,31 @@ msgid "Destination directory exists and is not empty." msgstr "" -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." msgstr "" -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "" @@ -273,13 +275,13 @@ "Please enter your password to access problem reports of system programs" msgstr "" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "" -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "" @@ -320,9 +322,8 @@ "detection" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "" @@ -332,46 +333,46 @@ msgid "Error: %s is not an executable. Stopping." msgstr "" -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -381,72 +382,72 @@ "be able to retrace crashes that happened on the currently running release." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " "neither -g, -o, nor -s are specified)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "" #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " "and try again." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -455,121 +456,121 @@ "%s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "Jănăš" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "\"PID\" tĕrĕs mar" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -577,8 +578,8 @@ "Please create a new report using \"apport-bug\"." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -590,230 +591,230 @@ "Do you really want to proceed?" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " "a single argument is given.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " "ones in %s. (Implied if file is given as only argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " "machine." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " "occurred." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "" #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "Tetel jănăšĕ" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -821,22 +822,22 @@ "%s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " "helpful for the developers." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "" --- apport-2.20.3.orig/po/da.po +++ apport-2.20.3/po/da.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:14+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:46+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: da\n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "Apport" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr "Beklager, men der opstod en intern fejl." -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "" "Hvis du bemærker yderligere problemer, så prøv at genstarte computeren." @@ -58,11 +58,11 @@ msgid "Ignore future problems of this program version" msgstr "Ignorér fremtidige problemer for denne programversion" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "Vis detaljer" @@ -70,21 +70,21 @@ msgid "_Examine locally" msgstr "_Undersøg lokalt" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "Lad være lukket" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "Fortsæt" @@ -100,9 +100,10 @@ "Der indsamles informationer, som kan hjælpe udviklerne med at løse det " "problem, du rapporterer." +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "Sender probleminformation" @@ -110,8 +111,8 @@ msgid "Uploading problem information" msgstr "Sender probleminformation" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -123,103 +124,103 @@ msgid "Apport crash file" msgstr "Apport-nedbrudsfil" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "(binære data)" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "Beklager, men programmet %s er stoppet uventet." -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "Beklager, men %s lukkede ned uventet." -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "Beklager, men der opstod en intern fejl i %s." -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "Send problemrapport til udviklerne?" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "Send" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "Gennemtving lukning" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "Genstart" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "Programmet %s er holdt op med at svare." -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "Programmet \"%s\" er holdt op med at svare." -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "Pakke: %s" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "Beklager, men der opstod et problem under installation af software." -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "Programmet %s er stødt på en intern fejl." -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "Programmet %s lukkede ned uventet." -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "Ignorér fremtidige problemer af denne type" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "Skjul detaljer" @@ -232,24 +233,25 @@ msgid "Destination directory exists and is not empty." msgstr "Destinationskatalog eksisterer og er ikke tomt." -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "Brugernavn:" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "Adgangskode:" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "Indsamler information om problemet" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "Indsamler information om problem" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." @@ -257,7 +259,7 @@ "Den indsamlede information kan sendes til udviklerne for at forbedre " "programmet. Dette kan tage nogle få minutter." -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "Afsender probleminformation" @@ -284,13 +286,13 @@ "Angiv venligst din adgangskode for at se rapporter over problemer med " "systemprogrammer" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "Rapportér et problem..." -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "Rapportér en funktionsfejl til udviklerne" @@ -341,9 +343,8 @@ "den eksekvérbare fil, der køres under memcheck, valgrinds værktøj til " "hukommelsestjek for registrering af læk i hukommelsen" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "Installér en ekstra pakke til sandkassen (kan angives flere gange)" @@ -353,16 +354,16 @@ msgid "Error: %s is not an executable. Stopping." msgstr "Fejl: %s er ikke en eksekvérbar fil. Afbryder." -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "" "Dit system kan blive ustabilt nu og kan få brug for at blive genstartet." -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "Føj ikke nye spor ind i rapporten, men skriv dem til stdout." -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" @@ -370,34 +371,34 @@ "Start en interaktiv gdb-session med rapportens kernedump (-o ignoreret; " "genskriver ikke rapport)" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" "Skriv tilpasset rapport til en angivet fil i stedet for at ændre den " "oprindelige rapport" -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "Fjern kernedump fra rapporten efter genoprettelsen af stakspor" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "Tilsidesæt rapports kernefil (CoreFile)" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "Tilsidesæt rapports ExecutablePath" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "Tilsidesæt rapports ProcMaps" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "Genopbyg rapports pakkeinformation" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -407,26 +408,26 @@ "be able to retrace crashes that happened on the currently running release." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "Foranstil tidsstempler i logbeskeder til batch-operation" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" "Opret og benyt tredjepartsarkiver fra kilder som er angivet i rapporter" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "Mellemlagermappe for pakker som er hentet til sandkassen" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." @@ -434,7 +435,7 @@ "Katalog for udpakkede pakker. Fremtidige kørsler vil antage at enhver pakke " "som allerede er hentet, også udpakkes til denne sandkasse." -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " @@ -444,7 +445,7 @@ "bruges, når et nedbruds-id angives til at sende de gensporerede stakspor " "(kun hvis hverken -g, -o, eller -s er angivet)" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." @@ -452,28 +453,28 @@ "Vis gensporerede stakspor og spørg om bekræftelse før de afsendes til " "nedbrudsdatabasen." -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" "Sti til sqlite-duplikatdatabasen (standard: ingen duplikeret kontrol)" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "Du kan ikke benytte -C uden -S. Afbryder." #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "O.k. at sende disse som bilag [y/n]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "Denne pakke synes ikke at være korrekt installeret" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " @@ -482,8 +483,8 @@ "Dette er ikke en officiel %s-pakke. Fjern venligst tredjepartspakken, hvis " "der er en, og prøv igen." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -495,26 +496,26 @@ "følgende pakker og se om problemet stadig opstår:\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "ukendt program" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "Undskyld, programmet \"%s\" lukkede uventet" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "Problem i %s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." @@ -522,55 +523,55 @@ "Din computer har ikke nok ledig hukommelse til en automatisk analyse af " "problemet og afsendelse af en rapport til udviklerne." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "Ugyldig problemrapport" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "Du har ikke tilladelse til at tilgå denne problemrapport." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "Fejl" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "" "Der er ikke nok diskplads til rådighed til at behandle denne rapport." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "Ingen pakke angivet" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "" "Du skal angive en pakke eller en PID. Se --help for mere information." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "Tilladelse nægtet" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." @@ -578,44 +579,44 @@ "Den angivne proces tilhører ikke dig. Kør venligst dette program som ejer af " "processen eller som administrator." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "Ugyldigt PID" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "Det angivne proces-ID tilhører ikke et program." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "Symptomskript %s udpegede ikke en berørt pakke" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "Pakke %s eksisterer ikke" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "Kan ikke oprette rapport" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "Opdaterer problemrapport" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -623,8 +624,8 @@ "Please create a new report using \"apport-bug\"." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -636,30 +637,30 @@ "Do you really want to proceed?" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "Ingen yderligere oplysninger indsamlet." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "Hvilken slags problem ønsker du at rapportere?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "Ukendt symptom" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "Symptomet \"%s\" er ikke kendt." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." @@ -667,36 +668,36 @@ "Tryk venligst på et programvindue - efter du lukker denne besked - for at " "rapportere et problem med det." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "xprop kunne ikke bestemme proces-id for vinduet" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "%prog " -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "Angiv pakkenavn." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "Tilføj et ekstra mærke til rapporten. Kan gives flere gange." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "%prog [tilvalg] [symptom|pid|pakke|programsti|.apport/.crash-fil]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " @@ -706,18 +707,18 @@ "eller blot et --pid. Fremvis en liste over kendte symptomer, hvis ingen af " "delene er angivet. (Underforstået hvis et enkelt argument er angivet.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "Klik på et vindue som et mål for indsendelse af en fejlrapport." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "Start i fejlopdateringstilstand. Kan have et valgfrit --package." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" @@ -725,8 +726,8 @@ "Opret en fejlrapport om et symptom. (Underforstået hvis symptomnavn er " "angivet som eneste argument.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" @@ -734,8 +735,8 @@ "Angiv pakkenavn i --file-bug-tilstand. Dette er valgfrit hvis et --pid er " "angivet. (Underforstået hvis pakkenavn er angivet som eneste argument.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " @@ -745,13 +746,13 @@ "fejlrapporten indeholde mere information. (Underforstået, hvis pid gives som " "eneste argument.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "Det angivne pid er et program som hænger." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " @@ -761,8 +762,8 @@ "igangværende filer i %s. (Underforstået hvis fil er angivet som eneste " "argument.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " @@ -772,46 +773,46 @@ "stedet for at rapportere den. Denne fil kan så rapporteres fra en anden " "maskine på et senere tidspunkt." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "Skriv Apport-versionnummer." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "" "Dette vil køre apport-retrace i et terminalvindue for at undersøge " "nedbruddet." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "Kør gdb-session" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "Kør gdb-session uden at hente fejlsøgningssymboler" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "Opdatér %s med fuldt symbolsk stakspor" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "" "Problemrapporten vedrører et program, som ikke længere er installeret." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " @@ -819,73 +820,73 @@ msgstr "" "Problemet opstod med programmet %s, som har ændret sig siden sidste nedbrud." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "Denne problemrapport er beskadiget og kan ikke behandles." #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "Rapporten tilhører en pakke, som ikke er installeret." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "Der opstod en fejl ved forsøg på at behandle denne problemrapport:" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "Kunne ikke bestemme pakken eller kildepakkenavn." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "Kan ikke starte internetbrowser" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "Kan ikke starte internetbrowser for at åbne %s." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "" "Indtast venligst dine kontoinformationer til %s-fejlregistreringssystemet" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "Netværksproblem" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" "Kan ikke forbinde til nedbrudsdatabase. Kontrollér venligst din " "internetforbindelse." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "Overbelastning af hukommelse" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "" "Dit system har ikke hukommelse nok til at behandle denne nedbrudsrapport." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -896,14 +897,14 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "Problemet er allerede kendt" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " @@ -913,8 +914,8 @@ "din internetbrowser. Kontrollér venligst om du kan tilføje yderligere " "information, som kan være til hjælp for udviklerne." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "" "Dette problem er allerede blevet rapporteret til udviklerne. Mange tak!" --- apport-2.20.3.orig/po/de.po +++ apport-2.20.3/po/de.po @@ -13,15 +13,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:14+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:46+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: de\n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "Apport" @@ -42,10 +42,10 @@ msgstr "" "Entschuldigung, es ist ein interner Fehler aufgetreten." -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "" "Falls Sie weitere Probleme bemerken, versuchen Sie Ihren Rechner neu zu " @@ -60,11 +60,11 @@ msgid "Ignore future problems of this program version" msgstr "Zukünftige Abstürze dieser Programmversion ignorieren" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "Einzelheiten anzeigen" @@ -72,21 +72,21 @@ msgid "_Examine locally" msgstr "_Lokal analysieren" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "Geschlossen lassen" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "Fortfahren" @@ -102,9 +102,10 @@ "Es werden Informationen gesammelt, die den Entwicklern beim Lösen des " "Problems helfen können." +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "Probleminformationen werden übermittelt" @@ -112,8 +113,8 @@ msgid "Uploading problem information" msgstr "Probleminformationen werden übermittelt" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -125,104 +126,104 @@ msgid "Apport crash file" msgstr "Apport-Absturzberichtsdatei" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "(binäre Daten)" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "Entschuldigung, die Anwendung »%s« wurde unerwartet beendet." -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "Entschuldigung, »%s« wurde unerwartet beendet." -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "Entschuldigung, »%s« hat einen internen Fehler festgestellt." -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "Problembericht an die Entwickler senden?" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "Senden" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "Schließen erzwungen" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "Neu starten" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "Die Anwendung %s reagiert nicht mehr." -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "Das Programm »%s« reagiert nicht mehr." -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "Paket: %s" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "" "Entschuldigung, beim Installieren der Anwendung ist ein Problem aufgetreten." -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "Die Anwendung %s hat einen internen Fehler erlitten." -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "Entschuldigung, %s wurde unerwartet beendet." -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "Zukünftige Abstürze dieser Art ignorieren" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "Einzelheiten ausblenden" @@ -235,24 +236,25 @@ msgid "Destination directory exists and is not empty." msgstr "Zielverzeichnis existiert und ist nicht leer." -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "Benutzername:" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "Passwort:" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "Probleminformationen werden gesammelt" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "Probleminformationen werden gesammelt" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." @@ -260,7 +262,7 @@ "Die gesammelten Informationen können an die Entwickler gesendet werden um " "die Anwendung zu verbessern. Das kann einige Minuten dauern." -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "Probleminformationen werden übermittelt" @@ -287,13 +289,13 @@ "Bitte geben Sie Ihr Passwort ein, um zu den Problemberichten von " "Systemprogrammen zu gelangen" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "Einen Fehler melden …" -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "Den Entwicklern eine Fehlfunktion melden" @@ -346,9 +348,8 @@ "Die ausführbare Datei, die unter valgrinds Speicherprüfungswerkzeug zur " "Speicherleckerkennung ausgeführt wird" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "" @@ -360,19 +361,19 @@ msgid "Error: %s is not an executable. Stopping." msgstr "Fehler: %s ist keine ausführbare Datei. Abbruch." -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "" "Ihr System könnte nun instabil werden, und muss eventuell neu gestartet " "werden." -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "" "Die neuen Stapelspeicher nicht in die Berichtsdatei, sondern auf die " "Standardausgabe schreiben." -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" @@ -380,36 +381,36 @@ "Eine interaktive GDB-Sitzung mit dem Kernspeicherauszug des Berichtes " "starten (-o wird ignoriert; Bericht wird nicht neu geschrieben)" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" "Den aktualisierten Bericht in die angegebene Datei schreiben anstatt den " "Originalbericht zu ändern" -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "" "Den Kernspeicherauszug vom Bericht entfernen, nachdem der Stapelspeicher neu " "generiert wurde." -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "CoreFile des Berichts überschreiben" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "ExecutablePath des Berichts überschreiben" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "ProcMaps des Berichts überschreiben" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "Die Paketinformation des Berichts erneuern" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -427,31 +428,31 @@ "allerdings sind Sie dann nur in der Lage Abstürze in der aktuell laufenden " "Veröffentlichung zurück zu verfolgen." -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" "Übertragungs-/Installationsfortschritt anzeigen, wenn Pakete in einer " "Sandbox installiert werden" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "" "Protokolleinträgen einen Zeitstempel voranstellen, für Stapelverarbeitung" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" "Verwende Paketquellen von Drittanbietern die in Berichten angegeben sind" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "" "Ordner zum Zwischenspeichern von Paketen, die in der Sandbox heruntergeladen " "wurden" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." @@ -460,7 +461,7 @@ "ausgegangen, dass alle bereits heruntergeladenen Pakete in diese Sandbox " "entpackt worden sind." -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " @@ -471,7 +472,7 @@ "der Absturzdaten angegeben wird (nur wenn weder »-g«, »-o« oder »-s« " "angegeben werden)" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." @@ -479,29 +480,29 @@ "Zurückverfolgte Stapelspeicher anzeigen und auf Bestätigung warten, bevor " "sie zur Fehlerdatenbank gesendet werden." -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" "Pfad zur sqlite-Datenbank mit den Duplikaten (Voreinstellung: Keine Prüfung " "auf Duplikate)" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "Sie dürfen -C nicht ohne -S verwenden. Abbruch." #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "Dürfen diese als Anlage mitgeschickt werden? [y = Ja / n = Nein]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "Dieses Paket scheint nicht richtig installiert zu sein" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " @@ -510,8 +511,8 @@ "Das ist kein offizielles %s-Paket. Bitte entfernen Sie alle Pakete von " "Drittanbietern und wiederholen Sie den Vorgang." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -525,26 +526,26 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "unbekanntes Programm" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "Entschuldigung, das Programm »%s« wurde unerwartet beendet" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "Problem in %s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." @@ -552,57 +553,57 @@ "Ihr System besitzt nicht genug Speicher, um den Absturzbericht zu " "verarbeiten und einen Bericht an die Entwickler zu senden." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "Ungültiger Problembericht" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "Sie haben keine Berechtigung für diesen Problembericht." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "Fehler" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "" "Ihr System besitzt nicht genug Festplattenplatz, um den Absturzbericht zu " "verarbeiten." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "Kein Paket angegeben." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "" "Sie müssen ein Paketnamen oder eine PID angeben. Versuchen Sie --help für " "weitere Informationen." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "Zugriff verweigert" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." @@ -610,44 +611,44 @@ "Der angegebene Prozess gehört nicht Ihnen. Bitte starten Sie dieses Programm " "als den Prozesseigentümer oder als root." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "Ungültige Prozesskennung" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "Die angegebene Prozesskennung gehört zu keinem Programm." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "Symptom-Skript %s konnte kein betroffenes Paket finden" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "Paket %s existiert nicht." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "Bericht kann nicht erstellt werden" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "Problembericht wird aktualisiert" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -660,8 +661,8 @@ "\n" "Bitte erstellen Sie mit »apport-bug« einen neuen Problembericht." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -682,30 +683,30 @@ "\n" "Möchten Sie wirklich fortfahren?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "Keine zusätzlichen Informationen gesammelt." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "Welche Art von Problem möchten Sie melden?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "Unbekanntes Symptom" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "Das Symptom »%s« ist nicht bekannt." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." @@ -713,39 +714,39 @@ "Nachdem Sie diese Meldung geschlossen haben, klicken Sie bitte auf das " "Fenster der Anwendung, zu der Sie ein Problem melden möchten." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "Xprop konnte die Prozesskennung des Fensters nicht ermitteln" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "%prog " -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "Paketnamen angeben." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "" "Eine zusätzliches Schlagwort zu dem Bericht hinzufügen. Kann mehrfach " "angegeben werden." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" "%prog [Optionen] [Fehler|PID|Paket|Programmpfad|.apport/.crash-Datei]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " @@ -755,22 +756,22 @@ "nur --pid. Wenn keines angegeben wird, eine Liste bekannter Symptome " "anzeigen. (Implizit, wenn nur ein einzelnes Argument angegeben wird.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "" "Klicken Sie bitte auf das Fenster der Anwendung, die im Bericht vorkommen " "soll." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "" "Im Fehleraktualisierungsmodus starten. Option --package kann zusätzlich " "angegeben werden." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" @@ -778,8 +779,8 @@ "Fehler als einen Bericht über ein Symptom melden. (Implizit, wenn der " "Symptom-Name als einziges Argument angegeben wird.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" @@ -788,8 +789,8 @@ "optional, wenn --pid angegeben wird. (Implizit, wenn der Paketname als " "einziges Argument angegeben wurde.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " @@ -799,13 +800,13 @@ "Fehlerbericht mehr Informationen enthalten. (Standard, wenn das einzige " "Argument eine PID ist.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "Die angegebene pid ist eine nicht reagierende Anwendung." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " @@ -815,8 +816,8 @@ "anstatt aus einer der in %s wartenden. (Implizit, wenn ein Dateiname als " "einziges Argument angegeben wurde.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " @@ -826,47 +827,47 @@ "Datei, anstatt sie direkt zu melden. Diese Datei kann später von einem " "anderen Rechner aus gesendet werden, um den Fehler zu melden." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "Die Versionsnummer von Apport ausgeben." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "" "Hierdurch wird apport-retrace in einem Terminal ausgeführt, um die " "Absturzursache zu untersuchen." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "Eine gdb-Sitzung ausführen" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "" "Eine gdb-Sitzung ausführen ohne Fehlerdiagnosesymbole herunterzuladen" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "%s mit vollständig symbolischen Stapelspeicher aktualisieren" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "" "Der Bericht gehört zu einem Programm welches nicht mehr installiert ist." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " @@ -875,76 +876,76 @@ "Das Problem trat in der Anwendung %s auf, die seit dem Absturz verändert " "wurde." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "" "Dieser Problembericht ist beschädigt und kann nicht verarbeitet werden." #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "Der Bericht gehört zu einem nicht installierten Paket." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "" "Bei der Verarbeitung dieses Fehlerberichts ist ein Problem aufgetreten:" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "Paket- oder Quellpaketname konnten nicht bestimmt werden." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "Konnte Web-Browser nicht starten" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "Konnte Web-Browser nicht starten um %s zu öffnen." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "" "Bitte geben Sie Ihre Kontodaten für das %s-Fehlerverwaltungssystem ein" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "Netzwerkproblem" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" "Es konnte keine Verbindung zur Fehlerdatenbank aufgebaut werden. Bitte " "prüfen Sie Ihre Internetverbindung." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "Kein Speicher mehr verfügbar" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "" "Ihr System besitzt nicht genug Speicher, um den Absturzbericht zu " "verarbeiten." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -955,14 +956,14 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "Dieses Problem ist bereits bekannt." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " @@ -973,8 +974,8 @@ "weiteren Informationen, welche für die Entwickler hilfreich sein könnten, " "hinzufügen können." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "Dieses Problem wurde den Entwicklern bereits gemeldet. Vielen Dank!" --- apport-2.20.3.orig/po/el.po +++ apport-2.20.3/po/el.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:15+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:46+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: \n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "Apport" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr "Μας συγχωρείτε, συνέβη ένα εσωτερικό σφάλμα." -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "" "Εάν συναντήσετε περαιτέρω προβλήματα, παρακαλούμε επανεκκινήστε τον " @@ -60,11 +60,11 @@ msgid "Ignore future problems of this program version" msgstr "Αγνοήστε μελλοντικά προβλήματα αυτής της έκδοσης προγράμματος" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "Προβολή λεπτομερειών" @@ -72,21 +72,21 @@ msgid "_Examine locally" msgstr "Τοπική _εξέταση" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "Να παραμείνει κλεισμένο" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "Συνέχεια" @@ -102,9 +102,10 @@ "Συλλέγονται πληροφορίες που μπορεί να βοηθήσουν τους υπευθύνους ανάπτυξης " "στην επιδιόρθωση του προβλήματος που αναφέρετε." +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "Αποστολή πληροφοριών προβλήματος" @@ -112,8 +113,8 @@ msgid "Uploading problem information" msgstr "Αποστολή πληροφοριών του προβλήματος" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -125,104 +126,104 @@ msgid "Apport crash file" msgstr "Αρχείο κατάρρευσης Apport" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "(δυαδικά δεδομένα)" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "Λυπούμαστε, η εφαρμογή %s σταμάτησε απροσδόκητα." -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "Συγνώμη,το %s τερματίστηκε απροδόκητα." -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "Συγνώμη, το %s παρουσίασε εσωτερικό σφάλμα." -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "Αποστολή αναφοράς προβλήματος στους προγραμματιστές;" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "Αποστολή" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "Εξαναγκασμένος τερματισμός" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "Επανεκκίνηση" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "Η εφαρμογή %s σταμάτησε να ανταποκρίνεται." -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "Το πρόγραμμα \"%s\" σταμάτησε να ανταποκρίνεται." -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "Πακέτο: %s" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "" "Συγνώμη , κάποιο πρόβλημα παρουσιάστηκε κατά την εγκατάσταση του λογισμικού." -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "Η εφαρμογή %s παρουσίασε ένα εσωτερικό σφάλμα." -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "Η εφαρμογή %s τερματίστηκε απροσδόκητα." -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "Στο μέλλον να αγνοούνται προβλήματα αυτού του τύπου" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "Απόκρυψη λεπτομεριών" @@ -235,24 +236,25 @@ msgid "Destination directory exists and is not empty." msgstr "Ο κατάλογος προορισμού υπάρχει ήδη και δεν είναι κενός." -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "Όνομα χρήστη:" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "Κωδικός πρόσβασης:" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "Συλλογή πληροφοριών προβλήματος" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "Συλλογή πληροφοριών προβλήματος" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." @@ -261,7 +263,7 @@ "ανάπτυξης ώστε να βελτιώσουν την εφαρμογή. Αυτό μπορεί να διαρκέσει λίγα " "λεπτά." -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "Αποστολή πληροφοριών προβλήματος" @@ -288,13 +290,13 @@ "Παρακαλώ εισάγετε το συνθηματικό σας για να αποκτήσετε πρόσβαση στις " "αναφορές προβλημάτων των προγραμμάτων συστήματος" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "Αναφορά προβλήματος..." -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "Αναφορά δυσλειτουργίας στους προγραμματιστές" @@ -346,9 +348,8 @@ "το εκτελέσιμο που τρέχει το εργαλείο ελέγχου μνήμης του valgrind για την " "ανίχνευση διαρροής μνήμης (memory leak)" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "" @@ -360,19 +361,19 @@ msgid "Error: %s is not an executable. Stopping." msgstr "Σφάλμα: το %s δεν είναι εκτελέσιμο. Διακοπή." -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "" "Το σύστημά σας πιθανώς να καταστεί ασταθές και ίσως απαιτηθεί η " "επανεκκίνησή του." -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "" "Να μην γίνει προσθήκη νέων στοιχείων στην αναφορά, αλλά να γραφτούν στο " "stdout." -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" @@ -380,36 +381,36 @@ "Εκκινήστε μια διαδραστική συνεδρία gdb με το core dump της αναφοράς (το -o " "παραβλέπεται, δεν δημιουργείται εκ νέου η αναφορά)" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" "Εγγραφή της τροποποιημένης αναφοράς στο επιλεγμένο αρχείο αντί για αλλαγή " "της αρχικής αναφοράς" -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "" "Αφαίρεση του αρχείου εικόνας μνήμης (core dump) από την αναφορά μετά την " "επαναδημιουργία της ακολουθίας κλήσεων στοίβας" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "Παράκαμψη του CoreFile της αναφοράς" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "Παράκαμψη του ExecutablePath της αναφοράς" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "Παράκαμψη των ProcMaps της αναφοράς" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "Επανοικοδόμηση των πληροφοριών πακέτου της αναφοράς" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -427,33 +428,33 @@ "εντοπίζει τα σπασμένα αρχεία που συνέβησαν όταν ήταν σε εκτέλεση η " "αποδέσμευση." -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" "Αναφορά προόδου λήψης/εγκατάστασης όταν εγκαθίστανται πακέτα στο δοκιμαστικό " "χώρο" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "" "Βάζουμε μπροστά χρονικές ενδείξεις για να συνδεθούν μηνύματα, για τη " "λειτουργία παρτίδας" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" "Δημιουργία και χρήση αποθετηρίων τρίτων από πηγές που καθορίζονται στις " "αναφορές" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "" "Προσωρινός κατάλογος για πακέτα που τοποθετούνται στο δοκιμαστικό χώρο " "(sandbox)" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." @@ -461,7 +462,7 @@ "Κατάλογος για χύμα πακέτα.Οι μελλοντικές διαδρομές ας υποθέσουμε πως ήδη τα " "πακέτα έχουν κατεβεί και εξάγονται στο sandbox." -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " @@ -472,7 +473,7 @@ "αποστολή των επαναπροσδιορισμένων στοιχείων του stack (μόνο αν κανένα από τα " "-g, -o και -s δεν ορίζονται)" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." @@ -480,29 +481,29 @@ "Προβολή των επαναπροσδιορισμένων στοιχείων του stack και ερώτηση για " "επιβεβαίωση πριν την αποστολή τους στη βάση δεδομένων κατάρρευσης." -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" "Διαδρομή προς τη διπλότυπη βάση δεδομένων sqlite (προεπιλογή: μη έλεγχος " "διπλότυπου)" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "Δεν μπορείτε να χρησιμοποιήσετε το -C χωρίς το -S. Διακοπή." #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "Συμφωνείτε με την αποστολή αυτών ως συνημμένων; [y/n]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "Αυτό το πακέτο δεν φαίνεται να έχει εγκατασταθεί σωστά" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " @@ -511,8 +512,8 @@ "Αυτό δεν είναι ένα επίσημο πακέτο του %s. Παρακαλώ αφαιρέστε κάθε πακέτο από " "τρίτους και προσπαθήστε ξανά." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -526,26 +527,26 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "άγνωστο πρόγραμμα" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "Συγνώμη, το πρόγραμμα \"%s\" τερματίστηκε απροσδόκητα" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "Πρόβλημα στο %s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." @@ -553,57 +554,57 @@ "Ο υπολογιστής σας δεν έχει αρκετή ελεύθερη μνήμη για να αναλύσει αυτόματα το " "πρόβλημα και να στείλει μια αναφορά στους προγραμματιστές." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "Μη έγκυρη αναφορά προβλήματος" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "" "Δεν σας επιτρέπεται να αποκτήσετε πρόσβαση σε αυτή την αναφορά προβλήματος." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "Σφάλμα" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "" "Δεν υπάρχει αρκετός χώρος στον δίσκο για την επεξεργασία αυτής της αναφοράς." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "Δεν ορίστηκε πακέτο" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "" "Χρειάζεται να ορίσετε ένα πακέτο ή ένα PID. Δείτε την --help για " "περισσότερες πληροφορίες." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "Δεν επιτρέπεται η πρόσβαση" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." @@ -611,46 +612,46 @@ "Η συγκεκριμένη διεργασία δεν ανήκει σε εσάς. Παρακαλούμε τρέξτε το πρόγραμμα " "ως ιδιοκτήτης της διεργασίας ή ως root." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "Άκυρος αριθμός αναγνώρισης της διεργασίας (PID)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "" "Αυτός ο αριθμός αναγνώρισης της διεργασίας (PID) δεν ανήκει σε κάποιο " "πρόγραμμα" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "Το σενάριο συμπτώματος %s δεν προσδιόρισε κανένα επηρεασμένο πακέτο" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "Το πακέτο %s δεν υπάρχει" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "Αδυναμία δημιουργίας αναφοράς" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "Ενημέρωση αναφοράς προβλήματος" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -662,8 +663,8 @@ "\n" "Παρακαλούμε δημιουργήστε μια νέα αναφορά με τη χρήση του \"apport-bug\"." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -684,30 +685,30 @@ "\n" "Θέλετε σίγουρα να προχωρήσετε;" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "Δεν έχουν συλλεχθεί επιπλέον πληροφορίες." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "Τι είδους πρόβλημα θέλετε να αναφέρετε;" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "Άγνωστο σύμπτωμα" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "Το σύμπτωμα \"%s\" είναι άγνωστο." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." @@ -715,39 +716,39 @@ "Αφού κλείσετε αυτό το μήνυμα παρακαλούμε κάντε κλικ στο παράθυρο μιας " "εφαρμογής για να αναφέρετε ένα πρόβλημα σχετικό με αυτήν." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "Το xprop απέτυχε να προσδιορίσει την ταυτότητα (PID) του παραθύρου." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "%prog <αριθμός αναφοράς>" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "Καθορίστε ένα όνομα πακέτου." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "" "Προσθέστε μια επιπλέον ετικέτα στην αναφορά. Μπορεί να οριστεί πολλές φορές." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" "%prog [επιλογές] [σύμπτωμα|pid|πακέτο|διαδρομή προγράμματος|αρχείο " ".apport/.crash]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " @@ -758,22 +759,22 @@ "εμφανίστε έναν κατάλογο γνωστών συμπτωμάτων. ( Η εξ ορισμού επιλογή εάν " "δίνεται ένα και μοναδικό όρισμα.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "" "Επιλέξτε ένα παράθυρο πατώντας το, για να συμπληρώσετε μια αναφορά " "προβλήματος." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "" "Εκκίνηση σε λειτουργία ενημέρωσης σφάλματος. Δέχεται προαιρετικά την " "παράμετρο --package." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" @@ -781,8 +782,8 @@ "Υποβάλετε αναφορά σφάλματος για ένα σύμπτωμα. (Στην περίπτωση που η ονομασία " "του συμπτώματος δίνεται ως μοναδικό όρισμα.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" @@ -791,8 +792,8 @@ "έχει ήδη καθοριστεί ένα --pid. (Στην περίπτωση που το όνομα πακέτου δίνεται " "ως μοναδικό όρισμα.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " @@ -802,15 +803,15 @@ "προσδιοριστεί, η αναφορά θα περιέχει περισσότερες πληροφορίες. (Όταν η " "ταυτότητα διεργασίας (PID) δίνεται ως η μόνη παράμετρος.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "" "Το παρεχόμενο αναγνωριστικό διεργασίας (PID) είναι για μια εφαρμογή που έχει " "κολλήσει." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " @@ -819,8 +820,8 @@ "Αναφέρετε την κατάρρευση από το δεδομένο αρχείο .apport ή .crash αντί αυτών " "στο %s. (Στην περίπτωση που το αρχείο δίδεται ως το μοναδικό όρισμα.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " @@ -830,45 +831,45 @@ "πληροφορίες σε ένα αρχείο αντί να τις αναφέρετε. Το αρχείο αυτό μπορεί να " "αποσταλεί για αναφορά αργότερα από έναν διαφορετικό υπολογιστή." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "Τυπώστε τον αριθμό έκδοσης της εφαρμογής Apport." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "" "Αυτό θα εκκινήσει το apport-retrace σε ένα παράθυρο τερματικού για να " "διερευνηθεί η σύγκρουση." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "Εκτέλεση συνεδρίας gdb" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "Εκτέλεση συνεδρίας gdb χωρίς λήψη συμβόλων εκφαλμάτωσης" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "Ενημέρωση %s με πλήρως συμβολική παρακολούθηση στίβας" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "Αυτή η αναφορά αφορά πρόγραμμα το οποίο έχει πλέον απεγκατασταθεί." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " @@ -877,80 +878,80 @@ "Το πρόβλημα παρουσιάστηκε με το πρόγραμμα %s το οποίο έχει αλλάξει από τη " "στιγμή που συνέβη η κατάρρευση." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "" "Αυτή η αναφορά προβλήματος έχει καταστραφεί και είναι αδύνατη η επεξεργασία " "της." #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "Η αναφορά ανήκει σε ένα πακέτο το οποίο δεν είναι εγκατεστημένο." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "" "Παρουσιάστηκε ένα σφάλμα κατά την προσπάθεια επεξεργασίας αυτής της αναφοράς " "προβλήματος:" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "" "Αδύνατος ο καθορισμός του πακέτου ή του ονόματος του πακέτου πηγαίου κώδικα." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "Αδύνατη η εκκίνηση του περιηγητή" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "Αδύνατη η εκκίνηση του περιηγητή για το άνοιγμα του %s." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "" "Εισάγετε τα στοιχεία του λογαριασμού σας στο σύστημα παρακολούθησης " "σφαλμάτων %s." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "Πρόβλημα δικτύου" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" "Αδυναμία σύνδεσης στη βάση δεδομένων καταρρεύσεων, παρακαλώ ελέγξτε τη " "σύνδεσή σας στο διαδίκτυο." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "Εξάντληση μνήμης" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "" "Το σύστημα δεν έχει αρκετή ελεύθερη μνήμη για τη διαδικασία αναφοράς " "κατάρρευσης." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -961,14 +962,14 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "Πρόβλημα ήδη γνωστό" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " @@ -978,8 +979,8 @@ "που βλέπετε. Παρακαλώ εξετάστε, αν μπορείτε να προσθέσετε κάποιες επιπλέον " "πληροφορίες, που να είναι χρήσιμες στους προγραμματιστές." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "" "Αυτό το πρόβλημα έχει ήδη αναφερθεί στους συντελεστές της εφαρμογής. Σας " --- apport-2.20.3.orig/po/en_AU.po +++ apport-2.20.3/po/en_AU.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:16+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:47+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: \n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "Apport" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr "Sorry, an internal error happened." -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "If you notice further problems, try restarting the computer." @@ -57,11 +57,11 @@ msgid "Ignore future problems of this program version" msgstr "Ignore future problems of this program version" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "Show Details" @@ -69,21 +69,21 @@ msgid "_Examine locally" msgstr "_Examine locally" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "Leave Closed" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "Continue" @@ -99,9 +99,10 @@ "Information is being collected that may help the developers fix the problem " "you report." +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "Uploading problem information" @@ -109,8 +110,8 @@ msgid "Uploading problem information" msgstr "Uploading problem information" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -122,103 +123,103 @@ msgid "Apport crash file" msgstr "Apport crash file" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "(binary data)" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "Sorry, the application %s has stopped unexpectedly." -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "Sorry, %s has closed unexpectedly." -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "Sorry, %s has experienced an internal error." -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "Send problem report to the developers?" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "Send" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "Force Closed" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "Relaunch" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "The application %s has stopped responding." -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "The program \"%s\" has stopped responding." -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "Package: %s" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "Sorry, a problem occurred while installing software." -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "The application %s has experienced an internal error." -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "The application %s has closed unexpectedly." -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "Ignore future problems of this type" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "Hide Details" @@ -231,24 +232,25 @@ msgid "Destination directory exists and is not empty." msgstr "Destination directory exists and is not empty." -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "Username:" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "Password:" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "Collecting Problem Information" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "Collecting problem information" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." @@ -256,7 +258,7 @@ "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "Uploading Problem Information" @@ -282,13 +284,13 @@ msgstr "" "Please enter your password to access problem reports of system programs" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "Report a problem..." -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "Report a malfunction to the developers" @@ -338,9 +340,8 @@ "the executable that is run under valgrind's memcheck tool for memory leak " "detection" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "" @@ -351,16 +352,16 @@ msgid "Error: %s is not an executable. Stopping." msgstr "Error: %s is not an executable. Stopping." -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "" "Your system might become unstable now and might need to be restarted." -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "Do not put the new traces into the report, but write them to stdout." -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" @@ -368,33 +369,33 @@ "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" "Write modified report to given file instead of changing the original report" -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "Remove the core dump from the report after stack trace regeneration" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "Override report's CoreFile" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "Override report's ExecutablePath" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "Override report's ProcMaps" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "Rebuild report's Package information" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -410,27 +411,27 @@ "\"system\", it will use the system configuration files, but will then only " "be able to retrace crashes that happened on the currently running release." -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" "Report download/install progress when installing packages into sandbox" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "Prepend timestamps to log messages, for batch operation" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" "Create and use third-party repositories from origins specified in reports" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "Cache directory for packages downloaded in the sandbox" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." @@ -438,7 +439,7 @@ "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " @@ -448,7 +449,7 @@ "used when specifying a crash ID to upload the retraced stack traces (only if " "neither -g, -o, nor -s are specified)" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." @@ -456,28 +457,28 @@ "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" "Path to the duplicate sqlite database (default: no duplicate checking)" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "You cannot use -C without -S. Stopping." #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "OK to send these as attachments? [y/n]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "This package does not seem to be installed correctly" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " @@ -486,8 +487,8 @@ "This is not an official %s package. Please remove any third party package " "and try again." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -500,26 +501,26 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "unknown program" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "Sorry, the program \"%s\" closed unexpectedly" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "Problem in %s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." @@ -527,54 +528,54 @@ "Your computer does not have enough free memory to automatically analyse the " "problem and send a report to the developers." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "Invalid problem report" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "You are not allowed to access this problem report." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "Error" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "There is not enough disk space available to process this report." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "No package specified" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "" "You need to specify a package or a PID. See --help for more information." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "Permission denied" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." @@ -582,44 +583,44 @@ "The specified process does not belong to you. Please run this program as the " "process owner or as root." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "Invalid PID" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "The specified process ID does not belong to a program." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "Symptom script %s did not determine an affected package" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "Package %s does not exist" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "Cannot create report" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "Updating problem report" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -631,8 +632,8 @@ "\n" "Please create a new report using \"apport-bug\"." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -652,30 +653,30 @@ "\n" "Do you really want to proceed?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "No additional information collected." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "What kind of problem do you want to report?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "Unknown symptom" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "The symptom \"%s\" is not known." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." @@ -683,37 +684,37 @@ "After closing this message please click on an application window to report a " "problem about it." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "xprop failed to determine process ID of the window" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "%prog " -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "Specify package name." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "Add an extra tag to the report. Can be specified multiple times." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " @@ -723,18 +724,18 @@ "a --pid. If neither is given, display a list of known symptoms. (Implied if " "a single argument is given.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "Click a window as a target for filing a problem report." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "Start in bug updating mode. Can take an optional --package." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" @@ -742,8 +743,8 @@ "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" @@ -751,8 +752,8 @@ "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " @@ -762,13 +763,13 @@ "report will contain more information. (Implied if pid is given as only " "argument.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "The provided pid is a hanging application." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " @@ -777,8 +778,8 @@ "Report the crash from given .apport or .crash file instead of the pending " "ones in %s. (Implied if file is given as only argument.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " @@ -788,45 +789,45 @@ "reporting it. This file can then be reported later on from a different " "machine." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "Print the Apport version number." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "" "This will launch apport-retrace in a terminal window to examine the crash." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "Run gdb session" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "Run gdb session without downloading debug symbols" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "Update %s with fully symbolic stack trace" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "" "This problem report applies to a program which is not installed any more." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " @@ -835,71 +836,71 @@ "The problem happened with the program %s which changed since the crash " "occurred." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "This problem report is damaged and cannot be processed." #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "The report belongs to a package that is not installed." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "An error occurred while attempting to process this problem report:" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "Could not determine the package or source package name." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "Unable to start web browser" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "Unable to start web browser to open %s." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "Please enter your account information for the %s bug tracking system" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "Network problem" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" "Cannot connect to crash database, please check your Internet connection." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "Memory exhaustion" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "" "Your system does not have enough memory to process this crash report." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -910,14 +911,14 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "Problem already known" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " @@ -927,8 +928,8 @@ "browser. Please check if you can add any further information that might be " "helpful for the developers." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "This problem was already reported to developers. Thank you!" --- apport-2.20.3.orig/po/en_CA.po +++ apport-2.20.3/po/en_CA.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:16+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:47+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: \n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "Apport" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr "Sorry, an internal error happened." -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "If you notice further problems, try restarting the computer." @@ -57,11 +57,11 @@ msgid "Ignore future problems of this program version" msgstr "Ignore future problems of this program version" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "Show Details" @@ -69,21 +69,21 @@ msgid "_Examine locally" msgstr "_Examine locally" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "Leave Closed" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "Continue" @@ -99,9 +99,10 @@ "Information is being collected that may help the developers fix the problem " "you report." +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "Uploading problem information" @@ -109,8 +110,8 @@ msgid "Uploading problem information" msgstr "Uploading problem information" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -122,103 +123,103 @@ msgid "Apport crash file" msgstr "Apport crash file" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "(binary data)" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "Sorry, the application %s has stopped unexpectedly." -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "Sorry, %s has closed unexpectedly." -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "Sorry, %s has experienced an internal error." -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "Send problem report to the developers?" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "Send" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "Force Closed" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "Relaunch" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "The application %s has stopped responding." -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "The program \"%s\" has stopped responding." -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "Package: %s" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "Sorry, a problem occurred while installing software." -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "The application %s has experienced an internal error." -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "The application %s has closed unexpectedly." -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "Ignore future problems of this type" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "Hide Details" @@ -231,24 +232,25 @@ msgid "Destination directory exists and is not empty." msgstr "Destination directory exists and is not empty." -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "Username:" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "Password:" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "Collecting Problem Information" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "Collecting problem information" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." @@ -256,7 +258,7 @@ "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "Uploading Problem Information" @@ -282,13 +284,13 @@ msgstr "" "Please enter your password to access problem reports of system programs" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "Report a problem..." -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "Report a malfunction to the developers" @@ -338,9 +340,8 @@ "the executable that is run under valgrind's memcheck tool for memory leak " "detection" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "" @@ -351,16 +352,16 @@ msgid "Error: %s is not an executable. Stopping." msgstr "Error: %s is not an executable. Stopping." -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "" "Your system might become unstable now and might need to be restarted." -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "Do not put the new traces into the report, but write them to stdout." -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" @@ -368,33 +369,33 @@ "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" "Write modified report to given file instead of changing the original report" -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "Remove the core dump from the report after stack trace regeneration" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "Override report's CoreFile" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "Override report's ExecutablePath" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "Override report's ProcMaps" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "Rebuild report's Package information" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -410,26 +411,26 @@ "\"system\", it will use the system configuration files, but will then only " "be able to retrace crashes that happened on the currently running release." -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" "Report download/install progress when installing packages into sandbox" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "Prepend timestamps to log messages, for batch operation" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "Cache directory for packages downloaded in the sandbox" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." @@ -437,7 +438,7 @@ "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " @@ -447,7 +448,7 @@ "used when specifying a crash ID to upload the retraced stack traces (only if " "neither -g, -o, nor -s are specified)" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." @@ -455,28 +456,28 @@ "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" "Path to the duplicate sqlite database (default: no duplicate checking)" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "You cannot use -C without -S. Stopping." #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "OK to send these as attachments? [y/n]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "This package does not seem to be installed correctly" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " @@ -485,8 +486,8 @@ "This is not an official %s package. Please remove any third party package " "and try again." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -499,26 +500,26 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "unknown program" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "Sorry, the program \"%s\" closed unexpectedly" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "Problem in %s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." @@ -526,54 +527,54 @@ "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "Invalid problem report" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "You are not allowed to access this problem report." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "Error" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "There is not enough disk space available to process this report." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "No package specified" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "" "You need to specify a package or a PID. See --help for more information." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "Permission denied" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." @@ -581,44 +582,44 @@ "The specified process does not belong to you. Please run this program as the " "process owner or as root." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "Invalid PID" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "The specified process ID does not belong to a program." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "Symptom script %s did not determine an affected package" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "Package %s does not exist" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "Cannot create report" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "Updating problem report" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -630,8 +631,8 @@ "\n" "Please create a new report using \"apport-bug\"." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -651,30 +652,30 @@ "\n" "Do you really want to proceed?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "No additional information collected." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "What kind of problem do you want to report?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "Unknown symptom" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "The symptom \"%s\" is not known." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." @@ -682,37 +683,37 @@ "After closing this message please click on an application window to report a " "problem about it." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "xprop failed to determine process ID of the window" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "%prog " -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "Specify package name." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "Add an extra tag to the report. Can be specified multiple times." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " @@ -722,18 +723,18 @@ "a --pid. If neither is given, display a list of known symptoms. (Implied if " "a single argument is given.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "Click a window as a target for filing a problem report." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "Start in bug updating mode. Can take an optional --package." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" @@ -741,8 +742,8 @@ "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" @@ -750,8 +751,8 @@ "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " @@ -761,13 +762,13 @@ "report will contain more information. (Implied if pid is given as only " "argument.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "The provided pd is a hanging application." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " @@ -776,8 +777,8 @@ "Report the crash from given .apport or .crash file instead of the pending " "ones in %s. (Implied if file is given as only argument.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " @@ -787,45 +788,45 @@ "reporting it. This file can then be reported later on from a different " "machine." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "Print the Apport version number." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "" "This will launch apport-retrace in a terminal window to examine the crash." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "Run gdb session" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "Run gdb session without downloading debug symbols" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "Update %s with fully symbolic stack trace" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "" "This problem report applies to a program which is not installed any more." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " @@ -834,71 +835,71 @@ "The problem happened with the program %s which changed since the crash " "occurred." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "This problem report is damaged and cannot be processed." #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "The report belongs to a package that is not installed." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "An error occurred while attempting to process this problem report:" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "Could not determine the package or source package name." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "Unable to start web browser" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "Unable to start web browser to open %s." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "Please enter your account information for the %s bug tracking system" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "Network problem" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" "Cannot connect to crash database, please check your Internet connection." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "Memory exhaustion" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "" "Your system does not have enough memory to process this crash report." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -909,14 +910,14 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "Problem already known" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " @@ -926,8 +927,8 @@ "browser. Please check if you can add any further information that might be " "helpful for the developers." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "This problem was already reported to developers. Thank you!" --- apport-2.20.3.orig/po/en_GB.po +++ apport-2.20.3/po/en_GB.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:15+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:47+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: \n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "Apport" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr "Sorry, an internal error happened." -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "If you notice further problems, try restarting the computer." @@ -57,11 +57,11 @@ msgid "Ignore future problems of this program version" msgstr "Ignore future problems of this program version" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "Show Details" @@ -69,21 +69,21 @@ msgid "_Examine locally" msgstr "_Examine locally" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "Leave Closed" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "Continue" @@ -99,9 +99,10 @@ "Information is being collected that may help the developers fix the problem " "you report." +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "Uploading problem information" @@ -109,8 +110,8 @@ msgid "Uploading problem information" msgstr "Uploading problem information" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -122,103 +123,103 @@ msgid "Apport crash file" msgstr "Apport crash file" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "(binary data)" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "Sorry, the application %s has stopped unexpectedly." -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "Sorry, %s has closed unexpectedly." -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "Sorry, %s has experienced an internal error." -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "Send problem report to the developers?" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "Send" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "Force Closed" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "Relaunch" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "The application %s has stopped responding." -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "The program \"%s\" has stopped responding." -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "Package: %s" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "Sorry, a problem occurred while installing software." -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "The application %s has experienced an internal error." -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "The application %s has closed unexpectedly." -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "Ignore future problems of this type" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "Hide Details" @@ -231,24 +232,25 @@ msgid "Destination directory exists and is not empty." msgstr "Destination directory exists and is not empty." -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "Username:" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "Password" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "Collecting Problem Information" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "Collecting problem information" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." @@ -256,7 +258,7 @@ "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "Uploading Problem Information" @@ -282,13 +284,13 @@ msgstr "" "Please enter your password to access problem reports of system programs" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "Report a problem..." -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "Report a malfunction to the developers" @@ -338,9 +340,8 @@ "the executable that is run under Valgrind's memcheck tool for memory leak " "detection" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "" @@ -351,16 +352,16 @@ msgid "Error: %s is not an executable. Stopping." msgstr "Error: %s is not an executable. Stopping." -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "" "Your system might become unstable now and might need to be restarted." -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "Do not put the new traces into the report, but write them to stdout." -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" @@ -368,33 +369,33 @@ "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" "Write modified report to given file instead of changing the original report" -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "Remove the core dump from the report after stack trace regeneration" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "Override report's CoreFile" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "Override report's ExecutablePath" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "Override report's ProcMaps" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "Rebuild report's Package information" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -410,27 +411,27 @@ "\"system\", it will use the system configuration files, but will then only " "be able to retrace crashes that happened on the currently running release." -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" "Report download/install progress when installing packages into sandbox" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "Prepend timestamps to log messages, for batch operation" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" "Create and use third-party repositories from origins specified in reports" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "Cache directory for packages downloaded in the sandbox" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." @@ -438,7 +439,7 @@ "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " @@ -448,7 +449,7 @@ "used when specifying a crash ID to upload the retraced stack traces (only if " "neither -g, -o, nor -s are specified)" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." @@ -456,28 +457,28 @@ "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" "Path to the duplicate sqlite database (default: no duplicate checking)" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "You cannot use -C without -S. Stopping." #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "OK to send these as attachments? [y/n]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "This package does not seem to be installed correctly" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " @@ -486,8 +487,8 @@ "This is not an official %s package. Please remove any third party package " "and try again." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -500,26 +501,26 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "unknown program" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "Sorry, the program \"%s\" closed unexpectedly" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "Problem in %s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." @@ -527,54 +528,54 @@ "Your computer does not have enough free memory to automatically analyse the " "problem and send a report to the developers." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "Invalid problem report" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "You are not allowed to access this problem report." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "Error" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "There is not enough disk space available to process this report." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "No package specified" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "" "You need to specify a package or a PID. See --help for more information." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "Permission denied" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." @@ -582,44 +583,44 @@ "The specified process does not belong to you. Please run this program as the " "process owner or as root." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "Invalid PID" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "The specified process ID does not belong to a program." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "Symptom script %s did not determine an affected package" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "Package %s does not exist" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "Cannot create report" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "Updating problem report" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -631,8 +632,8 @@ "\n" "Please create a new report using \"apport-bug\"." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -652,30 +653,30 @@ "\n" "Do you really want to proceed?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "No additional information collected." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "What kind of problem do you want to report?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "Unknown symptom" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "The symptom \"%s\" is not known." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." @@ -683,37 +684,37 @@ "After closing this message please click on an application window to report a " "problem about it." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "xprop failed to determine process ID of the window" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "%prog " -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "Specify package name." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "Add an extra tag to the report. Can be specified multiple times." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " @@ -723,18 +724,18 @@ "a --pid. If neither is given, display a list of known symptoms. (Implied if " "a single argument is given.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "Click a window as a target for filing a problem report." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "Start in bug updating mode. Can take an optional --package." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" @@ -742,8 +743,8 @@ "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" @@ -751,8 +752,8 @@ "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " @@ -762,13 +763,13 @@ "report will contain more information. (Implied if pid is given as only " "argument.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "The provided pid is a hanging application." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " @@ -777,8 +778,8 @@ "Report the crash from given .apport or .crash file instead of the pending " "ones in %s. (Implied if file is given as only argument.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " @@ -788,45 +789,45 @@ "reporting it. This file can then be reported later on from a different " "machine." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "Print the Apport version number." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "" "This will launch apport-retrace in a terminal window to examine the crash." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "Run gdb session" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "Run gdb session without downloading debug symbols" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "Update %s with fully symbolic stack trace" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "" "This problem report applies to a program which is not installed any more." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " @@ -835,71 +836,71 @@ "The problem happened with the program %s which changed since the crash " "occurred." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "This problem report is damaged and cannot be processed." #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "The report belongs to a package that is not installed." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "An error occurred while attempting to process this problem report:" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "Could not determine the package or source package name." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "Unable to start web browser" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "Unable to start web browser to open %s." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "Please enter your account information for the %s bug tracking system" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "Network problem" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" "Cannot connect to crash database, please check your Internet connection." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "Memory exhaustion" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "" "Your system does not have enough memory to process this crash report." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -910,14 +911,14 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "Problem already known" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " @@ -927,8 +928,8 @@ "browser. Please check if you can add any further information that might be " "helpful for the developers." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "This problem has already been reported to developers. Thank you!" --- apport-2.20.3.orig/po/eo.po +++ apport-2.20.3/po/eo.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:14+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:46+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: eo\n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "Aporto" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr "Pardonu, interna eraro okazis." -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "" "Se vi renkontiĝas pliajn problemojn, klopodu restartigi la komputilon." @@ -58,11 +58,11 @@ msgid "Ignore future problems of this program version" msgstr "Ignori ontajn problemojn de la programaro en ĉi tiu versio" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "Montri detalojn" @@ -70,21 +70,21 @@ msgid "_Examine locally" msgstr "Lok_e testi" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "Lasi fermitan" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "Daŭrigi" @@ -100,9 +100,10 @@ "La sistemo nun kolektas informojn, kiuj eble helpos al la evoluigantoj " "ripari la problemon, kiun vi raportas." +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "Alŝutado de informoj pri la problemo" @@ -110,8 +111,8 @@ msgid "Uploading problem information" msgstr "Alŝutado de informoj pri la problemo" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -123,103 +124,103 @@ msgid "Apport crash file" msgstr "Kolapsdosiero de Aporto" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "(duumaj datumoj)" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "" -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "Pardonu, %s fermiĝis neatendite." -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "Pardonu, interna eraro okazis en %s." -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "Ĉu sendi problem-raporton al la evoluigantoj?" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "Sendi" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "Relanĉi" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "" -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "" -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "Pakaĵo: %s" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "Pardonu, problemo okazis dum instalado de la programaro." -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "" -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "La aplikaĵo %s fermiĝis neatendite." -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "Ignori onte tian problemon" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "Kaŝi detalojn" @@ -232,24 +233,25 @@ msgid "Destination directory exists and is not empty." msgstr "La celdosierujo ekzistas kaj ne estas malplena." -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "Uzantnomo:" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "Pasvorto:" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "Kolektanta probleminformojn" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "Kolektado de informoj pri la problemo" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." @@ -257,7 +259,7 @@ "La kolektitaj informoj povas esti senditaj al la programistoj por plibonigi " "la aplikaĵon. Tio povas daŭri kelkajn minutojn." -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "Alŝutanta probleminformojn" @@ -280,13 +282,13 @@ "Please enter your password to access problem reports of system programs" msgstr "" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "Raporti problemon..." -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "Raporti misfunkcion al la programistoj" @@ -327,9 +329,8 @@ "detection" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "Instali kroman pakaĵon en la provejon (plurfoje specifeblas)" @@ -339,16 +340,16 @@ msgid "Error: %s is not an executable. Stopping." msgstr "" -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "" "Via sistemo povas nun nestabiliĝi kaj eble ĝi devas esti restartigata" -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "Ne meti la novajn spurojn en la raporto sed sendi ilin al 'stdout'." -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" @@ -356,34 +357,34 @@ "Startigi dialogan gdb-seancon kun la nekropsio de la raporto (-o estas " "ignorata; ne reskribas raporton)" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" "Konservi la modifitan raporton al la indikita dosiero anstataŭ ol ŝanĝi la " "originalan raporton." -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "Forigi la nekropsion de la raporto por regenero de la stak-spurado" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "Transpasi CoreFile de raporto" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "Transpasi ExecutablePath de raporto" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "Transpasi ProcMaps de raporto" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "Refari pakaĵinformojn de raporto" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -399,33 +400,33 @@ "\"system\", ĝi uzos la sistemagordajn dosierojn, sed tiam ĝi havos nur la " "eblon por retrovi kolapsojn okazitajn sur la nune funkcianta sistemo." -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" "Raporti progreson de elŝutado/instalado dum instalado de pakaĵoj en la " "provejon." -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "Antaŭmeti tempindikojn al protokolmesaĝoj. Por komandoj" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "Kaŝmemora dosierujo por pakaĵoj elŝutitaj en la provejo" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " @@ -435,7 +436,7 @@ "estas uzata dum specifigo de kolaps-identigilo por alŝuti la respuritajn " "stakspurojn (nur se nek -g, nek -o, nek -s estas specifitaj)" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." @@ -443,29 +444,29 @@ "Montri respuritajn stakspurojn kaj peti konfirmon antaŭ ol sendi ilin al la " "kolapsdatumbazo." -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" "Pado al la duobligita sqlite-datumbazo (apriore: neniu kontrolo por " "duobligoj)" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "" #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "Ĉu sendi ĉi tiujn kiel kunsendaĵoj? [y/n]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "Ŝajnas, ke ĉi tiu pakaĵo ne estas korekte instalita" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " @@ -474,8 +475,8 @@ "Ĉi tio ne estas oficiala pakaĵo de %s. Bonvole forigu ĉiun ajn pakaĵon de " "ekstera liveranto kaj provu denove." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -488,26 +489,26 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "nekonata programaro" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "Bedaŭrinde la programaro \"%s\" fermiĝis neatendite" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "Problemo en %s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." @@ -515,53 +516,53 @@ "Via komputilo ne havas sufiĉe da libera memoro por analizi la problemon kaj " "sendi raporton al la evoluigantoj." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "Nevalida problemraporto" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "Vi ne rajtas aliri ĉi tiun problemraporton." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "Eraro" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "Spaco en disko ne sufiĉas por trakti ĉi tiun raporton." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "Neniu pakaĵo indikita." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "Vi devas indiki pakaĵon aŭ PID. Vidu --help por pliaj informoj." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "Permeso malaprobita" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." @@ -569,44 +570,44 @@ "La indikita procezo ne apartenas al vi. Bonvole rulu ĉi tiun programaron " "kiel posedanto de la procezo aŭ kiel ĉefuzanto." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "Nevalida PID" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "La indikita procesa identigilo ne apartenas al iu programaro." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "La skripto por analizi problemon %s ne trovis koncernatan pakaĵon" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "Pakaĵo %s ne ekzistas" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "La raporto ne kreeblas" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "Ĝisdatiganta problemraporton" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -618,8 +619,8 @@ "\n" "Bonvole kreu novan raporton per \"apport-bug\"." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -639,30 +640,30 @@ "\n" "Ĉu vi vere volas daŭrigi?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "Neniu aldonaj informoj estis kolektitaj." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "Kiuspecan problemon vi volas raporti?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "nekonata simptomo" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "La simptomo \"%s\" ne estas konata." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." @@ -670,38 +671,38 @@ "Ferminte ĉi tiun mesaĝon, bonvole alklaku aplikaĵfenestron por raporti " "problemon pri ĝi." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "xprop fiaskis en determinado de procesidentigilo de la fenestro" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "%prog " -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "Specifi pakaĵnomon." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "Aldoni plian markon al la raporto. Tio plurfoje specifeblas." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" "%prog [opcioj] [simptomo|pid|pakaĵo|dosierpado de programaro|dosiero " ".apport/.crash]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " @@ -712,18 +713,18 @@ "simptomoj aperas. (Ĉi tiu reĝimo validas aŭtomate, se nur unu argumento " "estas specifita.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "Alklaku sur fenestro kiel celo, por sendi problemraporton." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "Startigi en redakta reĝimo. La opcio --package aldoneblas." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" @@ -731,8 +732,8 @@ "Sendu problemraporton pri simptomoj. (Ĉi tiu regimo validas aŭtomate, se la " "nomo de la simptomo estas donita kiel sola argumento.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" @@ -741,8 +742,8 @@ "specifita. (Ĉi tiu regimo validas aŭtomate, se la nomo de la pakaĵo estas " "donita kiel sola argumento.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " @@ -752,13 +753,13 @@ "cimraporto enhavos pli da informoj. (Ĉi tiu regimo validas aŭtomate, se pid " "estas donita kiel sola argumento.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " @@ -768,8 +769,8 @@ "okazantaj en %s. (Ĉi tiu regimo validas aŭtomate, se la dosiero estas " "donita kiel sola argumento.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " @@ -778,44 +779,44 @@ "En cimpleniga reĝimo, konservi la kolektitajn informojn en dosieron anstataŭ " "ol raporti ĝin. Ĉi tiu dosiero povas poste esti raportata per alia maŝino." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "Eligi la numeron de versio de Aporto." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "" "Tio rulos apport-retrace en fenestro de terminalo por testi la kolapson." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "Ruli seancon de gdb" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "Ruli seancon de gdb sen elŝuti sencimigsimbolojn" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "Ĝisdatigi %s kun tute simbolika staka spuro" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "Ĉi tiu raporto apartenas al ne plu instalita programaro." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " @@ -823,73 +824,73 @@ msgstr "" "La problemo okazis kun la programaro %s, kiu ŝanĝis ekde la kolapso okazis." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "La raporto estas damaĝita kaj ne povas esti traktata." #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "La raporto apartenas al pakaĵo, kiu ne estas instalita." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "Eraro okazis dum klopodado por procezi ĉi tiun raporton de problemo:" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "Ne eblis eltrovi la nomon de la pakaĵo aŭ de la fonta pakaĵo." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "Ne eblis startigi retfoliumilon." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "Ne eblis starti retfoliumilo por malfermi %s." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "" "Bonvole indiku viajn informojn pri la uzantkonto por la sistemo de " "cimspurado por %s." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "Reta problemo" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" "Ne eblas konekti al la datumbazo pri kolapsoj. Bonvole kontrolu vian " "retkonekton." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "Memoro elĉerpita" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "Via sistemo ne havas sufiĉe da memoro por trakti la kolapsraporton." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -900,14 +901,14 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "Jam konata problemo." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " @@ -917,8 +918,8 @@ "retfoliumilo. Bonvole kontrolu, ĉu vi povas aldoni pliajn eble utilajn " "informojn por la evoluigantoj." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "Ĉi tiu problemo estas jam raportita al programistoj. Dankon!" --- apport-2.20.3.orig/po/es.po +++ apport-2.20.3/po/es.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:15+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:47+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: es\n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "Apport" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr "Lo sentimos, ocurrió un error interno." -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "Si sigue teniendo problemas, intente reiniciar el equipo." @@ -57,11 +57,11 @@ msgid "Ignore future problems of this program version" msgstr "Ignorar problemas futuros de esta versión del programa" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "Mostrar detalles" @@ -69,21 +69,21 @@ msgid "_Examine locally" msgstr "_Examinar localmente" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "Dejar cerrada" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "Continuar" @@ -99,9 +99,10 @@ "La información que se está recopilando puede ayudar a los desarrolladores a " "resolver el problema que va a notificar." +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "Enviando la información del problema" @@ -109,8 +110,8 @@ msgid "Uploading problem information" msgstr "Enviando información del problema" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -122,103 +123,103 @@ msgid "Apport crash file" msgstr "Archivo de fallo de Apport" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "(datos binarios)" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "Lo sentimos, la aplicación %s se detuvo inesperadamente." -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "%s se cerró inesperadamente." -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "Lo sentimos, %s ha experimentado un error interno." -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "¿Enviar un informe del problema a los desarrolladores?" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "Enviar" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "Forzar cierre" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "Reabrir" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "La aplicación %s ha dejado de responder." -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "El programa «%s» ha dejado de responder." -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "Paquete: %s" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "Lo sentimos, ha ocurrido un problema al instalar el software." -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "La aplicación %s ha experimentado un error interno." -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "La aplicación %s se cerró inesperadamente." -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "Ignorar problemas futuros de este tipo" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "Ocultar detalles" @@ -231,24 +232,25 @@ msgid "Destination directory exists and is not empty." msgstr "El directorio de destino existe y no está vacío." -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "Nombre de usuario:" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "Contraseña:" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "Recopilando información del problema" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "Recopilando información del problema" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." @@ -256,7 +258,7 @@ "La información recopilada se puede enviar a los desarrolladores para mejorar " "la aplicación. Esto puede tardar algunos minutos." -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "Enviando información del problema" @@ -283,13 +285,13 @@ "Escriba su contraseña para acceder a los informes de problemas de programas " "del sistema" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "Informar de un problema..." -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "Notificar un mal funcionamiento a los desarrolladores" @@ -340,9 +342,8 @@ "el ejecutable que corre bajo el complemento memcheck valgrind en la " "detección de fugas de memoria" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "" @@ -354,18 +355,18 @@ msgid "Error: %s is not an executable. Stopping." msgstr "Error: %s no es un ejecutable. Parando." -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "" "Su sistema puede volverse inestable y puede que necesite reiniciarlo." -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "" "No poner las nuevas trazas en el informe, pero escribirlas en la salida " "estándar." -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" @@ -373,36 +374,36 @@ "Iniciar una sesión interactiva de gdb con el volcado de memoria del informe " "(-o ignorado; no se reescribe el informe)" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" "Escribir el informe modificado en el archivo dado, en vez de cambiar el " "informe original" -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "" "Eliminar del informe el volcado de memoria tras la regeneración de la traza " "de la pila" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "Sobrescribir los informes de CoreFile" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "Sobrescribir los informes de ExecutablePath" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "Sobrescribir los informes de ProcMaps" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "Reconstruir la información de paquetes del informe" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -419,30 +420,30 @@ "configuración del sistema, pero solo será capaz de volver sobre los errores " "que ocurrieron en la ejecución actual." -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" "Informar del progreso de la descarga/instalación de paquetes en la caja de " "arena" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "" "Anteponer marcas de tiempo para registrar mensajes, para su operación en lote" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" "Crear y usar repositorios de terceros de orígenes especificados en los " "informes" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "Almacenar directorios para paquetes descargados en la caja de arena" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." @@ -450,7 +451,7 @@ "Directorio para paquetes desempacados. Las ejecuciones futuras asumirán que " "cualquier paquete ya descargado se extrae también a esta caja de arena." -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " @@ -460,7 +461,7 @@ "errores. Esto se usa cuando especifica un ID de error para cargar una pila " "de rastros reconstituidos (solo si no se especifican ni -g, ni -o ni -s" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." @@ -468,29 +469,29 @@ "Mostrar la pila de rastros reconstituidos y pedir confirmación antes de " "enviarlos a la base de datos de errores" -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" "Ruta a la base de datos sqlite duplicada (por omisión: sin comprobación de " "duplicado)" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "No se puede usar -C sin -S. Parando." #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "¿Está de acuerdo en enviar esto como adjuntos? [y/n]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "Este paquete no parece haberse instalado correctamente" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " @@ -499,8 +500,8 @@ "Este no es un paquete oficial de %s. Desinstale cualquier paquete de " "terceros e inténtelo de nuevo." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -513,26 +514,26 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "programa desconocido" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "El programa «%s» se cerró inesperadamente" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "Problema en %s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." @@ -540,56 +541,56 @@ "Su equipo no tiene memoria libre suficiente para analizar el problema " "automáticamente y enviar un informe a los desarrolladores." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "Informe de problema no válido" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "No tiene permitido acceder a este informe de problema." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "Error" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "" "No hay suficiente espacio de disco disponible para procesar este informe." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "No se especificó ningún paquete" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "" "Necesita especificar un paquete o un PID. Consulte --help para más " "información." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "Permiso denegado" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." @@ -597,44 +598,44 @@ "El proceso especificado no le pertenece. Ejecute este programa como " "propietario del proceso o como superusuario." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "PID no válido" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "El ID de proceso especificado no pertenece a ningún programa." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "El script de síntomas %s no determinó ningún paquete afectado" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "El paquete %s no existe" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "No se puede crear el informe" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "Informe de problema con actualización" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -646,8 +647,8 @@ "\n" "Cree un informe nuevo usando «apport-bug»." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -668,30 +669,30 @@ "\n" "¿Está seguro de que quiere continuar?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "No se ha recopilado información adicional." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "¿De qué tipo de problema quiere informar?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "Síntoma desconocido" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "El síntoma «%s» es desconocido." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." @@ -699,39 +700,39 @@ "Después de cerrar este mensaje pulse en una ventana de aplicación para " "informar acerca de un problema con ella." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "xprop falló al determinar la ID de proceso de la ventana" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "%prog " -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "Especifique el nombre del paquete." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "" "Añade una etiqueta adicional al informe. Se puede especificar varias veces." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" "%prog [opciones] [síntomas|pid|paquete|ruta al programa|archivo .apport o " ".crash]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " @@ -742,21 +743,21 @@ "lista de síntomas conocidos. (Implícito si se proporciona un único " "argumento.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "" "Pulse una ventana como objetivo para rellenar un informe de problema." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "" "Iniciar en modo de actualización de errores. Admite un parámetro --package " "opcional." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" @@ -764,8 +765,8 @@ "Rellenar un informe de error acerca de un síntoma. (Implícito si se " "proporciona un nombre de síntoma como único argumento)." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" @@ -774,8 +775,8 @@ "un --pid es especificado. (Implícito si se ha dado un nombre de paquete como " "un único argumento)." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " @@ -785,13 +786,13 @@ "el informe de error contendrá más información. (Implica si pid se da como un " "argumento solo.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "El pid proporcionado es una aplicación colgada." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " @@ -801,8 +802,8 @@ "lugar de los pendientes en %s. (Implícito si se indica el archivo como único " "argumento.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " @@ -812,45 +813,45 @@ "archivo en vez de enviarla. Este archivo se puede enviar más tarde desde un " "equipo diferente." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "Mostrar el número de versión de Apport" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "" "Esto ejecutará apport-retrace en una terminal para examinar la falla." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "Ejecutar una sesión gdb" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "Ejecutar una sesión gdb sin descargar símbolos de depuración" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "Actualizar %s con una pila de seguimiento completamente simbólica" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "" "Este informe de problema aplica a un programa que ya no está instalado." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " @@ -858,75 +859,75 @@ msgstr "" "El problema ocurrió con el programa %s, que ha sido modificado desde esa vez." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "El informe del problema está dañado y no puede procesarse." #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "El informe proviene de un paquete no instalado." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "Ocurrió un error al intentar procesar este informe de problema:" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "No se pudo determinar el nombre del paquete binario o fuente." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "No se puede arrancar el navegador web" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "No se puede arrancar el navegador web para abrir %s." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "" "Introduzca la información de su cuenta para el sistema de seguimiento de " "errores de %s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "Problemas con la red" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" "No es posible la conexión con la base de datos de errores, por favor, " "verifique su conexión a Internet." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "Memoria agotada" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "" "Su sistema no tiene la memoria suficiente para procesar este informe de " "fallo." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -937,14 +938,14 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "Problema ya conocido" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " @@ -954,8 +955,8 @@ "mostrado en el navegador web. Por favor, compruebe si puede añadir cualquier " "información adicional que pudiera resultar de utilidad a los desarrolladores." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "Ya se ha informado de este problema a los desarrolladores. ¡Gracias!" --- apport-2.20.3.orig/po/et.po +++ apport-2.20.3/po/et.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:14+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:46+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: et\n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "Apport" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr "Vabandust, ilmnes sisemine viga ." -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "" @@ -57,11 +57,11 @@ msgid "Ignore future problems of this program version" msgstr "" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "Näita üksikasju" @@ -69,21 +69,21 @@ msgid "_Examine locally" msgstr "" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "Jätka" @@ -98,9 +98,10 @@ msgstr "" "Kogutakse informatsiooni, mis võib aidata arendajatel probleemi kõrvaldada." +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "Probleemi kirjeldava teabe üleslaadimine" @@ -108,8 +109,8 @@ msgid "Uploading problem information" msgstr "Probleemi kirjeldava teabe üleslaadimine" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -121,103 +122,103 @@ msgid "Apport crash file" msgstr "" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "(binaarandmed)" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "Vabandust, rakendus %s peatus ootamatult." -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "" -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "" -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "Kas saata arendajatele vearaport?" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "Saada" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "Taaskäivita" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "" -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "Programm \"%s\" ei vasta enam." -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "Pakett: %s" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "Vabandust, tarkvara paigaldamisel tekkis viga." -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "" -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "" -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "Peida üksikasjad" @@ -230,24 +231,25 @@ msgid "Destination directory exists and is not empty." msgstr "Sihtkataloog on olemas ja ei ole tühi." -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "Kasutajanimi:" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "Parool:" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "Probleemi kirjeldavate andmete kogumine" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "Probleemi kirjeldavate andmete kogumine" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." @@ -255,7 +257,7 @@ "Kogutud andmed võib saata arendajatele, et rakenduse saaks parandada. " "Saatmine võib võtta mõned minutid." -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "Probleemi kirjeldava teabe üleslaadimine" @@ -278,13 +280,13 @@ "Please enter your password to access problem reports of system programs" msgstr "" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "Probleemist teatamine..." -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "Arendajate teavitamine tõrkest" @@ -325,9 +327,8 @@ "detection" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "" @@ -337,47 +338,47 @@ msgid "Error: %s is not an executable. Stopping." msgstr "Viga: %s ei ole käivitusfail. Katkestan." -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "" "Teie süsteem võib nüüd muutuda ebastabiilseks ja võib vajada taaskäivitust." -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -387,72 +388,72 @@ "be able to retrace crashes that happened on the currently running release." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " "neither -g, -o, nor -s are specified)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "" #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "Kas saata need nagu manuseid? [jah: y /ei: n]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " "and try again." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -465,26 +466,26 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "tundmatu programm" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "Vabandust, programm \"%s\" sulgus ootamatult" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "Probleem %s ga" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." @@ -492,53 +493,53 @@ "Sinu arvutil ei ole piisavalt vaba mälu probleemi automaatse analüüsi ja " "arendajate teavitamise jaoks." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "Ebasobiv vearaport" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "Sul puudub ligipääs sellele vearaportile." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "Viga" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "Vearaporti käsitsemiseks pole piisavalt vaba kettaruumi." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "Pakett määramata" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "Sa pead määrama paketi või PID-i. Vaata --help lisainfo jaoks." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "Ligipääs keelatud" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." @@ -546,44 +547,44 @@ "Valitud protsess ei kuulu sulle. Palun käivita see programm protsessi " "omaniku või administraatorina." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "Vigane PID" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "Protsessi ID ei kuulu ühelegi programmile." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "Sümptomiskript %s ei tuvastanud seotud paketti" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "Paketti %s ei leitud" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "Raportit ei õnnestu luua" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "Probleemiraporti uuendamine" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -595,8 +596,8 @@ "\n" "Palun luua uus raport kasutades \"apport-bug\" käsku." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -608,30 +609,30 @@ "Do you really want to proceed?" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "Täiendavaid andmeid ei kogutud." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "Mis liiki veast sa tahad raporteerida?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "Tundmatu sümptom" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "Sümptom \"%s\" pole teada." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." @@ -639,202 +640,202 @@ "Probleemist teatamiseks vajuta peale selle sõnumi sulgemist probleemse " "rakenduse aknal." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "Täpsusta paketi nimi." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " "a single argument is given.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " "ones in %s. (Implied if file is given as only argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " "machine." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "Käivita gdb sessioon" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "See veateade on programmi kohta, mida ei ole enam paigaldatud." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " "occurred." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "See vearaport on rikutud ja seetõttu ei ole võimalik seda käsitseda." #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "Raport kuulub paigaldamata paketile." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "Paketi või lähtekoodi paketi nime ei suudetud tuvastada." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "Veebisirvija käivitamine ebaõnnestus" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "Ole hea ja sisesta oma %s veahalduse kontoandmed" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "Probleem võrguühendusega" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" "Ei saa ühendust krahhide andmebaasiga, palun kontrolli oma internetiühendust." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "Mälu ammendatud" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "Sinu arvutil pole piisavalt mälu selle krahhirapordi käsitlemiseks." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -845,14 +846,14 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "Probleem on varasemast teada" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " @@ -861,8 +862,8 @@ "Sellest probleemist teavitati juba veebisirvijas nähaolevas vearaportis. " "Palun vaata, kas sul on arendajate jaoks olulist informatsiooni, mida lisada." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "" --- apport-2.20.3.orig/po/eu.po +++ apport-2.20.3/po/eu.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:14+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:45+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: eu\n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "Apport" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr "Barkatu, barne-errore bat gertatu da." -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "" "Arazo gehiago aurkitzen badituzu, probatu ordenagailua berrabiaraziz." @@ -58,11 +58,11 @@ msgid "Ignore future problems of this program version" msgstr "" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "Erakutsi xehetasunak" @@ -70,21 +70,21 @@ msgid "_Examine locally" msgstr "_Aztertu lokalki" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "Mantendu itxita" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "Jarraitu" @@ -100,9 +100,10 @@ "Berri ematen ari zaren arazoari buruzko informazioa biltzen ari da, " "garatzaileei arazoa konpontzen laguntzeko." +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "Errorearen inguruko informazioa bidaltzen" @@ -110,8 +111,8 @@ msgid "Uploading problem information" msgstr "Arazoari buruzko informazioa bidaltzen" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -123,103 +124,103 @@ msgid "Apport crash file" msgstr "Apport kraskatze-fitxategia" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "(datu bitarrak)" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "Barkatu, %s aplikazioa ustekabean gelditu da." -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "Barkatu, %s ustekabean itxi da." -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "Barkatu, %s(e)k barne-errore bat izan du." -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "Arazoaren txosten bat bidali garatzaileei?" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "Bidali" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "Ixtera behartua" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "Berrabiarazi" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "%s aplikazioak ez du erantzuten." -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "\"%s\" programak ez du erantzuten." -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "Paketea: %s" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "Barkatu, arazo bat egon da softwarea instalatzean." -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "%s aplikazioak barne-errore bat izan du." -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "%s aplikazioa ustekabean itxi da." -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "Egin ezikusi aurrerantzean mota honetako arazoei" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "Ezkutatu xehetasunak" @@ -232,30 +233,31 @@ msgid "Destination directory exists and is not empty." msgstr "Jada existitzen da helburu direktorioa, eta ez dago hutsik." -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "Erabiltzaile-izena:" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "Pasahitza:" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "Errorearen inguruko informazioa biltzen" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." msgstr "" -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "" @@ -280,13 +282,13 @@ "Please enter your password to access problem reports of system programs" msgstr "Sartu pasahitza sistemako programen arazoen txostenak atzitzeko" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "Arazo baten berri eman..." -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "Funtzionamendu oker baten berri eman garatzaileei" @@ -327,9 +329,8 @@ "detection" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "" @@ -339,17 +340,17 @@ msgid "Error: %s is not an executable. Stopping." msgstr "" -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "" "Ezegonkor bilakatu daiteke zure sistema orain eta berrabiarazi beharko " "zenuke." -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "Ez traza berririk gehitu txostenera, horren ordez, stdout-en idatzi." -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" @@ -357,34 +358,34 @@ "gdb-sesio interaktiboa abiarazi txostenaren nukleoaren memoria-kopiarekin (-" "o ezikusia; ez du txostena berridazten)" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" "Fitxategi zehatz batean gorde txosten aldatua, jatorrizko txostena aldatu " "ordez." -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "Txostenaren CoreFile-a ezikusi" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "Txostenaren ExecutablePath-a ezikusi" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "Txostenaren ProcMaps-a ezikusi" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "Txostenaren pakete-informazioa berreraiki" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -394,64 +395,64 @@ "be able to retrace crashes that happened on the currently running release." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " "neither -g, -o, nor -s are specified)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "" #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "Paketea ez dela behar bezala instalatu dirudi" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " @@ -460,8 +461,8 @@ "Hau ez da %s(r)en pakete ofiziala. Ezabatu hirugarrengoen paketeak eta " "saiatu berriz." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -474,26 +475,26 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "programa ezezaguna" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "Lastima, ustekabean itxi da \"%s\" programa" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "Arazoa %s-n" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." @@ -501,54 +502,54 @@ "Zure ordenagailuak ez dauka memoria aske nahiko arazoa automatikoki aztertu " "eta garatzaileei txosten bat bidaltzeko." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "Arazoaren txosten baliogabea" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "Ez daukazu errore-txosten hau eskuratzeko baimenik." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "Errorea" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "Diskoan ez dago txostena prozesatzeko leku nahikorik libre." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "Ez da paketerik zehaztu" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "" "Pakete edo PID bat zehaztu behar duzu. Informazio gehiagorako, ikusi --help." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "Baimena ukatuta" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." @@ -556,44 +557,44 @@ "Zehaztutako prozesua ez da zurea. Mesedez, prozesuaren jabe modura edo erro " "modura exekuta ezazu programa hau." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "PID baliogabea" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "Zehaztutako prozesu-IDa ez dagokio inongo programari." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "%s paketea ez da existitzen" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -601,8 +602,8 @@ "Please create a new report using \"apport-bug\"." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -623,67 +624,67 @@ "\n" "Ziur aurrera jarraitu nahi duzula?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "Zein arazo-motaren berri eman nahi duzu?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "Sintoma ezezaguna" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "Ezezaguna da \"%s\" sintoma." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "Zehaztu pakete-izena." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" "%prog [aukerak] [sintoma|pid|paketea|programaren bidea|.apport/.crash " "fitxategia]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " @@ -693,19 +694,19 @@ "edo --pid bakarrik. Ezer ez zehaztuz gero, sintoma ezagunen zerrenda bat " "bistaratzen da. (Inplizitua argumentu bakarra zehaztuz gero.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "" "Hasi erroreak eguneratzeko moduan. Aukerazko --package bat hartu dezake." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" @@ -713,8 +714,8 @@ "Sintoma baten berri emateko txostena bete. (Inplizitua sintomaren izena " "zehaztuz gero argumentu bakar bezala.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" @@ -723,21 +724,21 @@ "zehaztu bada. (Inplizitua pakete-izen bakarra zehaztuz gero argumentu bakar " "bezala.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " @@ -747,123 +748,123 @@ "%s(e)koen ordez. (Inplizitua fitxategi bat zehaztuz gero argumentu bakar " "bezala.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " "machine." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "Apport bertsio-zenbakia erakutsi." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "" "Jadanik instalatuta ez dagoen programa bati dagokio errore-txosten honek." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " "occurred." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "Txosten hau kalteturik dago eta ezin da prozesatua izan." #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "Instalatuta ez dagoen pakete bati dagokio txostenak." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "Errore bat gertatu da arazo honen txostena prozesatzean:" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "Ezin izan da paketearen edo jatorrizko paketearen izena zehaztu." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "Ezin izan da web-arakatzailea abiarazi" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "Ezin izan da web-arakatzailea abiarazi %s irekitzeko." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "%s-ren akats-sistemarako zure kontuaren informazioa sartu ezazu" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "Sarearen arazoa" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" "Ezin kraskatze-datubasera konektatu, zure Internet-konexioa egiaztatu ezazu." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "Memoriaren agortzea" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "" "Zure sistemak ez dauka kraskatzearen txostena prozesatzeko memoria nahiko." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -874,14 +875,14 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "Arazoa ezaguna da jadanik" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " @@ -891,8 +892,8 @@ "garatzaileentzat lagungarria izan daitekeen informazio gehiago eman " "dezakezun egiaztatu ezazu." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "" --- apport-2.20.3.orig/po/fa.po +++ apport-2.20.3/po/fa.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:15+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:47+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: fa\n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr "" -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "" @@ -57,11 +57,11 @@ msgid "Ignore future problems of this program version" msgstr "" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "" @@ -69,21 +69,21 @@ msgid "_Examine locally" msgstr "" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "" @@ -97,9 +97,10 @@ "you report." msgstr "" +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "" @@ -107,8 +108,8 @@ msgid "Uploading problem information" msgstr "" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -118,103 +119,103 @@ msgid "Apport crash file" msgstr "" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "" -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "" -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "" -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "" -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "" -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "" -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "" -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "" -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "" @@ -227,30 +228,31 @@ msgid "Destination directory exists and is not empty." msgstr "" -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." msgstr "" -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "" @@ -273,13 +275,13 @@ "Please enter your password to access problem reports of system programs" msgstr "" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "" -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "" @@ -320,9 +322,8 @@ "detection" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "" @@ -332,46 +333,46 @@ msgid "Error: %s is not an executable. Stopping." msgstr "" -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -381,72 +382,72 @@ "be able to retrace crashes that happened on the currently running release." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " "neither -g, -o, nor -s are specified)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "" #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " "and try again." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -455,121 +456,121 @@ "%s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -577,8 +578,8 @@ "Please create a new report using \"apport-bug\"." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -590,230 +591,230 @@ "Do you really want to proceed?" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " "a single argument is given.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " "ones in %s. (Implied if file is given as only argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " "machine." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " "occurred." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "" #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -821,22 +822,22 @@ "%s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " "helpful for the developers." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "" --- apport-2.20.3.orig/po/fi.po +++ apport-2.20.3/po/fi.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:14+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:46+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: fi\n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "Apport" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr "Valitettavasti havaittiin sisäinen virhe." -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "Jos ongelmat jatkuvat, käynnistä tietokone uudelleen." @@ -57,11 +57,11 @@ msgid "Ignore future problems of this program version" msgstr "Älä huomioi tämän ohjelmiston kaatumisia jatkossa" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "Näytä tiedot" @@ -69,21 +69,21 @@ msgid "_Examine locally" msgstr "_Tutki paikallisesti" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "Sulje sovellus" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "Jatka" @@ -97,9 +97,10 @@ "you report." msgstr "Kerätään tietoja ongelman korjaamisen helpottamiseksi." +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "Lähetetään tiedot ongelmasta" @@ -107,8 +108,8 @@ msgid "Uploading problem information" msgstr "Lähetetään tietoja ongelmasta" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -120,103 +121,103 @@ msgid "Apport crash file" msgstr "Apport-kaatumistiedosto" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "(binääritiedot)" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "Valitettavasti sovellus %s pysähtyi odottamatta." -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "Valitettavasti %s sulkeutui odottamatta." -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "Valitettavasti %s kohtasi sisäisen virheen." -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "Lähetetäänkö raportti ongelmasta kehittäjille?" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "Lähetä" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "Suljettu väkisin" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "Käynnistä uudelleen" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "Sovellus \"%s\" ei vastaa." -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "Ohjelma \"%s\" ei vastaa." -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "Paketti: %s" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "Valitettavasti ohjelmistoja asennettaessa ilmeni ongelma." -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "Sovellus %s kohtasi sisäisen virheen." -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "Sovellus %s sulkeutui yllättäen." -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "Jätä huomiotta tulevat vastaavanlaiset ongelmat" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "Piilota tiedot" @@ -229,24 +230,25 @@ msgid "Destination directory exists and is not empty." msgstr "Kohdehakemisto on jo olemassa, eikä ole tyhjä." -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "Käyttäjätunnus" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "Salasana:" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "Kerätään tietoja ongelmasta" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "Kerätään tietoja ongelmasta" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." @@ -254,7 +256,7 @@ "Kerätty tieto voidaan lähettää kehittäjille ohjelmiston parantamiseksi. Tämä " "voi kestää muutamia minuutteja." -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "Lähetetään tiedot ongelmasta" @@ -279,13 +281,13 @@ "Please enter your password to access problem reports of system programs" msgstr "Anna salasanasi nähdäksesi järjestelmäohjelmien ongelmaraportteja" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "Raportoi ongelma" -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "Raportoi toimintahäiriöstä sovelluksen kehittäjille" @@ -331,9 +333,8 @@ "detection" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "Lataa ekstrapakkaukset hiekkalaatikkoon (voi kestää pitkään)" @@ -343,18 +344,18 @@ msgid "Error: %s is not an executable. Stopping." msgstr "Virhe: %s ei ole suoritettava tiedosto. Lopetetaan." -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "" "Järjestelmästäsi saattaa tulla epävakaa ja se saattaa tarvita " "uudelleenkäynnistystä." -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "" "Älä laita uusia jäljityksiä raporttiin, mutta kirjoita ne stdout:iin." -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" @@ -362,34 +363,34 @@ "Aloita interaktiiviinen gdb-istunto raportin ydinvedoksen kanssa (-o jättää " "huomioimatta; ei kirjoita raporttia)" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" "Kirjoita muokattu raportti annetulle tiedostolle alkuperäisen raportin " "muuttamisen sijaan." -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "Poista muistivedos raportista pinojäljityksen elvyttämisen jälkeen" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "Korvaa raportin CoreFile" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "Korvaa raportin ExecutablePath" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "Korvaa raportin ProcMaps" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "Rakenna raportin Paketti-informaatio uudelleen" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -399,31 +400,31 @@ "be able to retrace crashes that happened on the currently running release." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " @@ -433,7 +434,7 @@ "käytetään määritettäessä kaatumistunnistetta ladattaessa jäljitettyä " "pinojälkiä. (vain jos yhtäkään seuraavista ei ole määritetty: -g, -o ja -s)" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." @@ -441,28 +442,28 @@ "Näytä seuratut pinojäljet ja pyydä vahvistusta ennen niiden lähettämistä " "kaatumistietokantaan." -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" "Polku jäljennös-sqlite-tietokantaan (oletus: ei jälkennöksen tarkistusta)" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "Et voi käyttää valitsinta -C ilman valitsinta -S. Pysäytetään." #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "Sopiiko näiden lähettäminen liitteinä? [y/n] (y=kyllä, n=ei)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "Tätä pakettia ei ole asennettu oikein" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " @@ -471,8 +472,8 @@ "Tämä ei ole virallinen %s-paketti. Poista kolmansien osapuolten paketit ja " "yritä sitten uudelleen." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -485,26 +486,26 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "tuntematon sovellus" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "Ikävä kyllä ohjelma \"%s\" sulkeutui yllättäen" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "Ongelma osan %s kanssa" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." @@ -512,55 +513,55 @@ "Muistia ei ole vapaana tarpeeksi ongelman automaattiseen analysointiin ja " "virheraportin lähettämiseen." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "Virheellinen ongelmaraportti" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "Sinulla ei ole lukuoikeuksia tähän ongelmaraporttiin." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "Virhe" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "Levyllä ei ole tarpeeksi tilaa raportin käsittelyyn." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "Pakettia ei ole määritelty" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "" "Paketti tai PID-tunniste on annettava. Katso lisätietoja käyttämällä " "valitsinta --help." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "Lupa evätty" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." @@ -568,44 +569,44 @@ "Kyseinen prosessi ei kuulu sinulle. Aja tämä ohjelma prosessin omistajana " "tai pääkäyttäjänä." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "PID-numero ei kelpaa" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "Määritetty prosessin ID-numero ei kuulu kyseiselle ohjelmalle." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "Oirekomentosarja %s ei määritellyt vaikuttanutta pakettia" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "Pakettia %s ei ole olemassa" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "Raporttia ei voida luoda" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "Päivitetään ongelmaraporttia" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -617,8 +618,8 @@ "\n" "Ole hyvä, ja luo uusi raportti käyttäen \"apport-bug\" määrittelyä." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -639,30 +640,30 @@ "\n" "Haluatko todella jatkaa?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "Lisätietoja ei kerätty." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "Millainen ongelma raportoidaan?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "Tuntematon ongelma" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "Ongelmaa \"%s\" ei tunnistettu." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." @@ -670,39 +671,39 @@ "Kun olet sulkenut tämän viestin napsauta sen sovelluksen ikkunaa, johon " "liittyvän virheraportin haluat tehdä." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "xprop ei onnistunut selvittämään ikkunaan ID-tunnistenumeroa" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "%prog " -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "Määritä paketin nimi." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "" "Lisää raporttiin liittyvä tunniste. Tämä voidaan tehdä useampia kertoja." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" "%prog [valinnat] [ongelma|pid|paketti|ohjelman " "polku|.apport/.kaatumisraportti]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " @@ -712,20 +713,20 @@ "pid:n, tai vain --pid:n. Jos kumpaakaan ei anneta, näytä lista tunnetuista " "oireista. (Epäsuora jos yksi argumentti on annettu.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "Napsauta ikkunaa, johon liittyvän virheraportin haluat tehdä" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "" "Aloita ohjelmavirheiden päivitystilassa. Voi ottaa valinnaisen valitsimen --" "package." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" @@ -733,8 +734,8 @@ "Arkistoi ohjelmavirheen raportti oireena. (Epäsuora jos oireen nimi on " "annettu vain argumenttina.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" @@ -742,21 +743,21 @@ "Tarkenna paketin nimi --file-bug-tilassa. Tämä on valinnainen jos --pid on " "määritetty. (Epäsuora jos paketin nimi on annettu vain argumenttina.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "Annettu pid on ohjelma, joka ei vastaa" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " @@ -765,124 +766,124 @@ "Raportoi kaatuminen annetusta .apport tai .crash-tiedostosta odottavien " "sijaan kohdassa %s. (Epäsuora jos tiedosta on annettu vain argumenttina.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " "machine." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "Tulosta Apport-versionumero." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "" "Tämä käynnistää apport-retracen pääteikkunnassa ongelman tutkimiseksi." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "Käynnistä gdb sessiossa" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "Suorita gdb-istunto ilman virheenjäljityssymbolien lataamista" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "" "Tämä ongelmaraportti kytkeytyy ohjelmaan, joka ei ole enää asennettu." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " "occurred." msgstr "Ongelma koskee ohjelmaa %s, joka on muuttunut kaatumisen jälkeen" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "Tämä ongelman raportti on vahingoittunut, eikä sitä voida käsitellä." #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "Raportti liittyy pakettiin, jota ei ole asennettu." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "Virhe käsiteltäessä ongelmaraporttia:" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "Paketin tai lähdekoodipaketin nimeä ei voi määrittää." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "Selaimen käynnistäminen epäonnistui" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "Verkkoselainta ei saatu käynnistettyä avattaessa sivua %s." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "Ole hyvä ja syötä %s bugi raportointi järjestelmän kirjautumistiedot" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "Verkko-ongelma" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" "Kaatumistietokantaan ei voi yhdistää. Tarkista Internet-yhteyden toimivuus." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "Muisti ei riitä" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "" "Järjestelmässäsi ei ole tarpeeksi muistia tämän kaatumisraportin käsittelyyn." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -893,14 +894,14 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "Ongelma on jo tiedossa" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " @@ -909,8 +910,8 @@ "Tämä ongelma raportoitiin jo virheraportissa, joka on näkyvissä selaimessa. " "Tarkista, voisitko lisätä joitakin kehittäjiä auttavaa tietoa." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "" "Tästä ongelmasta on jo ilmoitettu kehittäjille. Kiitos kuitenkin " --- apport-2.20.3.orig/po/fr.po +++ apport-2.20.3/po/fr.po @@ -9,20 +9,20 @@ "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2015-09-10 11:16+0200\n" "PO-Revision-Date: 2015-12-23 11:09+0000\n" -"Last-Translator: Anne \n" +"Last-Translator: Anne017 \n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:14+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:46+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: fr\n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "Apport" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr "Désolé, une erreur interne s'est produite !" -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "" "En cas de nouveaux problèmes, essayez de redémarrer votre ordinateur." @@ -58,11 +58,11 @@ msgid "Ignore future problems of this program version" msgstr "Ignorer les problèmes futurs de cette version du programme" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "Afficher les détails" @@ -70,21 +70,21 @@ msgid "_Examine locally" msgstr "_Examiner en local" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "Laisser fermé" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "Continuer" @@ -100,9 +100,10 @@ "Des informations sont collectées qui pourraient aider les développeurs à " "corriger le problème que vous rapportez." +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "Téléversement des informations liées au problème" @@ -110,8 +111,8 @@ msgid "Uploading problem information" msgstr "Téléversement des informations liées au problème" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -123,103 +124,103 @@ msgid "Apport crash file" msgstr "Fichier de plantage Apport" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "(données binaires)" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "Désolé, l'application %s s'est arrêtée de façon inattendue." -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "Désolé, %s a quitté de façon inattendue." -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "Désolé, %s a rencontré une erreur interne." -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "Envoyer un rapport d'anomalie aux développeurs ?" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "Envoyer" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "Fermée de force" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "Relancer" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "L'application %s a cessé de répondre." -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "Le programme « %s » a cessé de répondre." -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "Paquet : %s" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "Désolé, une erreur est survenue lors de l'installation du logiciel." -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "L'application %s a subi une erreur interne." -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "L'application %s a quitté de façon inattendue." -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "Ignorer les prochains problèmes de ce genre" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "Masquer les détails" @@ -232,24 +233,25 @@ msgid "Destination directory exists and is not empty." msgstr "Le dossier de destination existe déjà et n'est pas vide." -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "Nom d'utilisateur :" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "Mot de passe :" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "Collecte des informations liées au problème" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "Collecte des informations liées au problème" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." @@ -257,7 +259,7 @@ "Les informations collectées peuvent être envoyées aux développeurs pour " "améliorer l'application. Cela peut prendre quelques minutes." -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "Téléversement des informations liées au problème" @@ -284,13 +286,13 @@ "Veuillez saisir votre mot de passe pour accéder à des rapports de problèmes " "de programmes système" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "Signaler un problème..." -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "Signaler un dysfonctionnement aux développeurs" @@ -342,9 +344,8 @@ "l'exécutable lancé dans l'outil de vérification de la mémoire de valgrind " "pour détecter une fuite de mémoire." -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "" @@ -356,18 +357,18 @@ msgid "Error: %s is not an executable. Stopping." msgstr "Erreur : %s n'est pas un exécutable. Arrêt." -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "" "Votre système peut maintenant devenir instable et nécessiter un redémarrage." -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "" "Ne pas placer les nouvelles « traces » dans le rapport, mais les écrire sur " "la sortie standard." -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" @@ -375,36 +376,36 @@ "Démarrer une session gdb interactive avec l'image système du rapport (-o " "ignoré ; ne réécrit pas le rapport)" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" "Écrire le rapport modifié dans le fichier donné au lieu de changer le " "rapport original." -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "" "Supprimer l'image système du rapport après régénération de la trace de la " "pile" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "Écraser le fichier core du rapport" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "Écraser le chemin de l'exécutable du rapport" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "Écraser la mappe des processus du rapport" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "Reconstruire les informations sur les paquets du rapport" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -421,30 +422,30 @@ "les fichiers de configuration du système seront utilisés, mais seuls les " "plantages de la version en cours d'exécution pourront être tracés." -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" "Signaler l'avancement du téléchargement/de l'installation lors de " "l'installation de paquets dans le bac à sable." -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "" "Préfixer un horodatage aux messages de journal, pour un traitement par lots" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" "Créer et utiliser les dépôts tiers à partir des origines spécifiées dans les " "rapports" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "Répertoire de cache pour les paquets téléchargés dans le bac à sable" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." @@ -452,7 +453,7 @@ "Répertoire pour les paquets décompressés. Les exécutions futures présumeront " "qu'un paquet déjà téléchargé sera aussi extrait dans ce bac à sable." -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " @@ -463,7 +464,7 @@ "plantage pour téléverser les traces de la pile retracées (seulement si -g, -" "o ou -s ne sont pas spécifiés)" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." @@ -471,29 +472,29 @@ "Afficher les traces de la pile retracées et demander une confirmation avant " "de les envoyer à la base de données des plantages." -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" "Chemin de la copie de la base de données sqlite (par défaut : pas de " "vérification de la copie)" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "Vous ne pouvez pas utiliser -C sans -S. Arrêt." #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "D'accord pour envoyer ceci comme pièces jointes ? [y/n]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "Ce paquet ne semble pas installé correctement." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " @@ -502,8 +503,8 @@ "Ce paquet n'est pas officiellement pris en charge par %s. Veuillez " "désinstaller tout paquet tiers et réessayer." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -517,26 +518,26 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "programme inconnu" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "Désolé, le programme « %s » a quitté de façon inattendue" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "Problème dans %s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." @@ -544,56 +545,56 @@ "Votre ordinateur ne possède pas suffisamment de mémoire libre pour analyser " "automatiquement le problème et envoyer un rapport aux développeurs." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "Rapport d'anomalie non valide" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "Vous n'êtes pas autorisé à accéder à ce rapport d'anomalie." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "Erreur" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "" "Il n'y a pas assez d'espace disque disponible pour traiter ce rapport." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "Aucun paquet spécifié" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "" "Vous devez préciser un paquet ou un PID. Utilisez --help pour plus " "d'informations." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "Autorisation refusée" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." @@ -602,44 +603,44 @@ "en tant que propriétaire du processus ou en tant que super-utilisateur " "(root)." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "PID non valide" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "L'ID de processus spécifié n'appartient à aucun programme." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "Le script %s n'a pas pu déterminer un paquet affecté" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "Le paquet %s n'existe pas" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "Impossible de créer le rapport" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "Mise à jour du rapport d'anomalie" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -651,8 +652,8 @@ "\n" "Veuillez créer un nouveau rapport en utilisant « apport-bug »." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -673,30 +674,30 @@ "\n" "Voulez-vous vraiment continuer ?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "Aucune information supplémentaire n'a été collectée." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "Quel type de problème voulez-vous signaler ?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "Symptôme inconnu" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "Le symptôme « %s » est inconnu." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." @@ -704,39 +705,39 @@ "Après avoir fermé ce message, veuillez cliquer sur la fenêtre de " "l'application pour laquelle vous voulez signaler un problème." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "xprop n'a pas pu déterminer l'ID du processus de la fenêtre" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "%prog " -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "Veuillez indiquer le nom du paquet." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "" "Ajouter un marqueur supplémentaire pour le rapport. Peut être spécifié " "plusieurs fois." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " @@ -746,20 +747,20 @@ "pid en option, ou simplement --pid. Si aucun n'est fournit, affiche une " "liste de symptômes connus. (Implicite si un seul argument est fournit.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "" "Cliquez sur la fenêtre pour laquelle vous voulez signaler un problème." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "" "Démarrer en mode de mise à jour de bogue. Accepte l’option --package." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" @@ -767,8 +768,8 @@ "Rédiger un rapport de bogue concernant un symptôme. (Implicite si le nom du " "symptôme est donné comme unique argument.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" @@ -777,8 +778,8 @@ "--pid est spécifié. (Implicite si le nom du paquet est donné comme unique " "argument.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " @@ -788,13 +789,13 @@ "spécifié, le rapport de bogue contiendra davantage d'informations. " "(implicite si l’identifiant du processus est passé comme unique argument)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "Le pid fourni est une application qui ne répond pas." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " @@ -804,8 +805,8 @@ "qu'à partir de ceux en attente dans %s. (Implicite si le fichier est donné " "comme unique argument.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " @@ -815,46 +816,46 @@ "un fichier au lieu de générer un rapport. Ce fichier pourra être utilisé " "plus tard à partir d'une autre machine pour envoyer un rapport." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "Afficher le numéro de version d'Apport." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "" "Cela va lancer apport-retrace dans une fenêtre de terminal pour examiner le " "plantage." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "Lancer une session gdb" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "Exécuter la session gdb sans télécharger les symboles de débogage" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "Mettre %s à jour avec une trace de pile entièrement symbolique" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "" "Ce rapport d'anomalie fait référence à un logiciel qui n'est plus installé." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " @@ -862,75 +863,75 @@ msgstr "" "Le problème concerne le programme %s qui a changé depuis le plantage." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "Ce rapport d'anomalie est endommagé et ne peut pas être traité." #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "Le rapport fait référence à un paquet non installé." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "" "Une erreur est survenue lors du traitement de ce rapport d'anomalie :" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "Impossible de déterminer le nom du paquet ou du paquet source." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "Impossible de lancer le navigateur Web" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "Impossible de lancer le navigateur Web pour ouvrir %s." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "" "Veuillez saisir les informations de votre compte pour le système de suivi " "des bogues %s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "Problème de réseau" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" "Impossible de se connecter à la base de données des plantages. Veuillez " "vérifier votre connexion Internet." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "Mémoire saturée" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "" "Votre système n'a pas assez de mémoire pour traiter ce rapport de plantage." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -941,14 +942,14 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "Problème déjà connu" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " @@ -958,8 +959,8 @@ "navigateur Web. Veuillez vérifier si vous pouvez ajouter des informations " "complémentaires susceptibles d'aider les développeurs." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "Ce problème a déjà été signalé aux développeurs. Merci !" --- apport-2.20.3.orig/po/fr_CA.po +++ apport-2.20.3/po/fr_CA.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:15+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:47+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: \n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "Apport" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr "Désolé, une erreur interne est survenue!" -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "" "Si vous continuez à remarquer des problèmes, essayez de redémarrer " @@ -59,11 +59,11 @@ msgid "Ignore future problems of this program version" msgstr "Ignorer les problèmes futurs de cette version du programme" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "Montrer les détails" @@ -71,21 +71,21 @@ msgid "_Examine locally" msgstr "_Examiner localement" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "Laisser fermé" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "Continuer" @@ -101,9 +101,10 @@ "Des informations sont collectées qui pourraient aider les développeurs à " "corriger le problème que vous rapportez." +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "Téléversement des informations du problème" @@ -111,8 +112,8 @@ msgid "Uploading problem information" msgstr "Téléversement des informations sur le problème" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -124,103 +125,103 @@ msgid "Apport crash file" msgstr "Fichier de plantage Apport" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "(données binaires)" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "Désolé, l'application %s s'est arrêtée de manière inattendue." -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "Désolé, %s s'est fermé de manière inattendue." -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "Désolé, %s a rencontré une erreur interne." -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "Envoyer un rapport de problème aux développeurs?" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "Envoyer" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "Fermée de force" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "Relancer" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "L'application %s a cessé de répondre." -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "Le programme « %s » a cessé de répondre." -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "Paquet : %s" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "Désolé, une erreur est survenue durant l'installation d'un logiciel." -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "L'application %s a rencontré une erreur interne." -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "L'application %s a quitté de façon inattendue." -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "Ignorer les problèmes futurs de ce type" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "Masquer les détails" @@ -233,24 +234,25 @@ msgid "Destination directory exists and is not empty." msgstr "Le répertoire de destination existe et n'est pas vide." -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "Nom d'utilisateur :" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "Mot de passe :" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "Collecte des informations du problème" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "Collecte des informations du problème" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." @@ -258,7 +260,7 @@ "Les informations collectées peuvent être envoyées aux développeurs pour " "améliorer l'application. Ceci peut prendre quelques minutes." -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "Téléversement des informations du problème" @@ -285,13 +287,13 @@ "Veuillez saisir votre mot de passe pour accéder aux rapports de problèmes " "des programmes systèmes" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "Rapporter un problème..." -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "Rapporter un dysfonctionnement aux développeurs" @@ -343,9 +345,8 @@ "l'exécutable lancé dans l'outil de vérification de la mémoire de valgrind " "pour détecter les fuites de mémoire." -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "" @@ -357,19 +358,19 @@ msgid "Error: %s is not an executable. Stopping." msgstr "Erreur : %s n'est pas un exécutable. Arrêt." -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "" "Votre système pourrait maintenant devenir instable et nécessiter un " "redémarrage." -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "" "Ne pas mettre les nouvelles traces dans le rapport, mais les écrire vers " "stdout." -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" @@ -377,35 +378,35 @@ "Démarrer une session gdb interactive avec l'image système du rapport (-o " "ignoré; ne réécrit pas le rapport)" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" "Écrire le rapport modifié dans le fichier donné au lieu de changer le " "rapport original." -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "" "Enlever l'image système du rapport après régénération de la trace de la pile" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "Écraser le fichier core du rapport" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "Écraser le chemin de l'exécutable du rapport" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "Écraser la mappe des processus du rapport" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "Reconstruire les informations sur les paquets du rapport" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -422,31 +423,31 @@ "configuration du système seront utilisés, mais seuls les plantages de la " "version en cours d'exécution pourront être retracés." -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" "Signaler l'avancement du téléchargement/de l'installation lors de " "l'installation de paquets dans le bac à sable." -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "" "Ajouter un horodatage au début des messages de journal, pour un traitement " "par lots" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" "Créer et utiliser les dépôts tiers à partir des origines spécifiées dans les " "rapports" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "Répertoire de cache pour les paquets téléchargés dans le bac à sable" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." @@ -454,7 +455,7 @@ "Répertoire pour les paquets décompressés. Les exécutions futures supposeront " "qu'un paquet déjà téléchargé est aussi extrait dans ce bac à sable." -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " @@ -465,7 +466,7 @@ "plantage pour téléverser les traces de la pile retracées (seulement si -g, -" "o ou -s ne sont pas spécifiés)" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." @@ -473,29 +474,29 @@ "Afficher les traces de la pile retracées et demander une confirmation avant " "de les envoyer à la base de données des plantages." -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" "Chemin de la copie de la base de données sqlite (par défaut : pas de " "vérification de la copie)" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "Vous ne pouvez pas utiliser -C sans -S. Arrêt." #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "OK pour envoyer ceci comme pièces jointes? [y/n]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "Ce paquet ne semble pas être installé correctement." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " @@ -504,8 +505,8 @@ "Ce n'est pas un paquet officiel %s. Veuillez enlever tout paquet tiers et " "ressayer." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -519,26 +520,26 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "programme inconnu" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "Désolé, le programme « %s » s'est fermé de façon inattendue" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "Problème dans %s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." @@ -546,56 +547,56 @@ "Votre ordinateur n'a pas assez de mémoire libre pour analyser " "automatiquement le problème et envoyer un rapport aux développeurs." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "Rapport de problème invalide" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "Vous n'êtes pas autorisé à accéder à ce rapport de problème." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "Erreur" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "" "Il n'y a pas assez d'espace disque disponible pour traiter ce rapport." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "Aucun paquet spécifié" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "" "Vous devez préciser un paquet ou un PID. Voir --help pour plus " "d'informations." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "Permission refusée" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." @@ -603,44 +604,44 @@ "Le processus spécifié ne vous appartient pas. Veuillez exécuter ce programme " "en tant que propriétaire du processus ou en tant que root." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "PID invalide" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "L'ID de processus spécifié n'appartient à aucun programme." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "Le script symptome %s n'a pas déterminé un paquet affecté" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "Le paquet %s n'existe pas" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "Impossible de créer le rapport" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "Mise à jour du rapport de problème" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -652,8 +653,8 @@ "\n" "Veuillez créer un nouveau rapport en utilisant « apport-bug »." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -674,30 +675,30 @@ "\n" "Voulez-vous vraiment continuer?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "Aucune autre information n'a été collectée." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "Quel sorte de problème voulez-vous rapporter?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "Symptôme inconnu" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "Le symptôme « %s » est inconnu." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." @@ -705,39 +706,39 @@ "Après avoir fermé ce message, veuillez cliquer sur la fenêtre de " "l'application pour laquelle vous voulez rapporter un problème." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "xprop n'a pas pu déterminer l'ID du processus de la fenêtre" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "%prog " -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "Spécifier le nom du paquet." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "" "Ajouter une balise supplémentaire au rapport. Peut être spécifié plusieurs " "fois." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " @@ -747,19 +748,19 @@ "option, ou juste --pid. Si aucun n'est donné, afficher une liste de " "symptômes connus. (Implicite si un seul argument est donné.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "Cliquer sur une fenêtre qui sera la cible du rapport de problème." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "" "Démarrer en mode de mise à jour de bogue. Accepte l’option --package." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" @@ -767,8 +768,8 @@ "Rédiger un rapport de bogue sur un symptôme. (Implicite si le nom du " "symptôme est donné comme seul argument.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" @@ -777,8 +778,8 @@ "--pid est spécifié. (Implicite si le nom du paquet est donné comme seul " "argument.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " @@ -788,13 +789,13 @@ "rapport de bogue contiendra plus d'informations. (implicite si le pid est " "donné comme seul argument)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "Le pid fourni est une application bloquée." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " @@ -804,8 +805,8 @@ "qu'à partir de ceux en attente dans %s. (Implicite si le fichier est donné " "comme seul argument.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " @@ -815,45 +816,45 @@ "un fichier au lieu de les rapporter. Ce fichier pourra alors être rapporter " "plus tard à partir d'une machine différente." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "Imprimer le numéro de version d'Apport." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "" "Ceci lancera apport-retrace dans une fenêtre de terminal pour examiner le " "plantage." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "Exécuter une session gdb" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "Exécuter une session gdb sans télécharger les symboles de débogage" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "Mettre %s à jour avec une trace de pile entièrement symbolique" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "Ce rapport de problème concerne un logiciel qui n'est plus installé." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " @@ -861,75 +862,75 @@ msgstr "" "Le problème est survenu avec le programme %s qui a changé depuis le plantage." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "Ce rapport de problème est endommagé et ne peut pas être traité." #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "Le rapport appartient à un paquet qui n'est pas installé." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "" "Une erreur est survenue lors du traitement de ce rapport de problème :" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "Impossible de déterminer le nom du paquet ou du paquet source." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "Impossible de démarrer le navigateur Web" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "Impossible de démarrer le navigateur Web pour ouvrir %s." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "" "Veuillez saisir les informations de votre compte pour le gestionnaire de " "bogues %s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "Problème de réseau" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" "Impossible de se connecter à la base de données des plantages. Veuillez " "vérifier votre connexion Internet." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "Mémoire pleine" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "" "Votre système n'a pas assez de mémoire pour traiter ce rapport de plantage." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -940,14 +941,14 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "Problème déjà connu" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " @@ -957,8 +958,8 @@ "navigateur Web. Veuillez vérifier si vous pouvez ajouter des informations " "complémentaires susceptibles d'aider les développeurs." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "Ce problème a déjà été rapporté aux développeurs. Merci!" --- apport-2.20.3.orig/po/ga.po +++ apport-2.20.3/po/ga.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:15+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:46+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: ga\n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr "" -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "" @@ -57,11 +57,11 @@ msgid "Ignore future problems of this program version" msgstr "" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "" @@ -69,21 +69,21 @@ msgid "_Examine locally" msgstr "" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "" @@ -97,9 +97,10 @@ "you report." msgstr "" +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "" @@ -107,8 +108,8 @@ msgid "Uploading problem information" msgstr "" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -118,103 +119,103 @@ msgid "Apport crash file" msgstr "" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "" -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "" -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "" -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "" -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "" -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "" -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "" -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "" -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "" @@ -227,30 +228,31 @@ msgid "Destination directory exists and is not empty." msgstr "" -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." msgstr "" -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "" @@ -273,13 +275,13 @@ "Please enter your password to access problem reports of system programs" msgstr "" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "" -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "" @@ -320,9 +322,8 @@ "detection" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "" @@ -332,46 +333,46 @@ msgid "Error: %s is not an executable. Stopping." msgstr "" -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -381,72 +382,72 @@ "be able to retrace crashes that happened on the currently running release." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " "neither -g, -o, nor -s are specified)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "" #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " "and try again." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -455,121 +456,121 @@ "%s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -577,8 +578,8 @@ "Please create a new report using \"apport-bug\"." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -590,230 +591,230 @@ "Do you really want to proceed?" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " "a single argument is given.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " "ones in %s. (Implied if file is given as only argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " "machine." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " "occurred." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "" #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -821,22 +822,22 @@ "%s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " "helpful for the developers." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "" --- apport-2.20.3.orig/po/gd.po +++ apport-2.20.3/po/gd.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:14+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:46+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: \n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "" @@ -43,10 +43,10 @@ msgstr "" "Tha sinn duillich ach thachair mearachd inntearnail." -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "" "Ma mhothaicheas tu do dhuilgheadasan eile, feuch is ath-thòisich an " @@ -63,11 +63,11 @@ msgstr "" "Leig seachad duilgheadas an tionndaidh seo dhen phrògram san àm ri teachd" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "Seall am mion-fhiosrachadh" @@ -75,21 +75,21 @@ msgid "_Examine locally" msgstr "_Sgrùd e gu h-ionadail" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "Fàg dùinte e" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "Lean air adhart" @@ -105,9 +105,10 @@ "Tha sinn a' cruinneachadh fiosrachadh a dh'fhaodadh a bhith cuideachail dhan " "luchd-leasachaidh a' càradh an duilgheadais a rinn thu aithris air." +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "A' luchdadh suas fiosrachadh mun duilgheadas" @@ -115,8 +116,8 @@ msgid "Uploading problem information" msgstr "A' luchdadh suas fiosrachadh mun duilgheadas" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -128,106 +129,106 @@ msgid "Apport crash file" msgstr "Faidhle tuislidh Apport" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "(dàta bìnearaidh)" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "Tha sinn duilich ach stad an aplacaid %s gu h-obann." -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "Tha sinn duilich ach dhùin %s gu h-obann." -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "Tha sinn duilich, thachair mearachd inntearnail ann an %s." -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "" "A bheil thu airson aithris mun duilgheadas a chur gun luchd-leasachaidh?" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "Sparr air dùnadh" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "Chan eil an aplacaid \"%s\" a' freagairt tuilleadh." -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "Chan eil am prògram \"%s\" a' freagairt tuilleadh." -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "" "Tha sinn duilich, dh'èirich duilgheadas nuair a bha sinn a' stàladh a' " "bhathair-bhog." -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "Thachair an aplacaid %s ri mearachd inntearnail." -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "Dhùin an aplacaid %s gu h-obann." -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "Leig seachad duilgheadasan dhen t-seòrsa seo san àm ri teachd" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "Falaich am mion-fhiosrachadh" @@ -240,24 +241,25 @@ msgid "Destination directory exists and is not empty." msgstr "Tha am pasgan sin sa cheann-uidhe mu thràth 's chan eil e falamh." -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "A' cruinneachadh fiosrachadh mun duilgheadas" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "A' cruinneachadh fiosrachadh mun duilgheadas" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." @@ -266,7 +268,7 @@ "leasachaidh airson 's gun urrainn dhaibh an aplacaid a leasachadh. " "Dh'fhaoidte gum feum seo beagan mhionaidean." -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "A' luchdadh suas fiosrachadh mun duilgheadas" @@ -293,13 +295,13 @@ "Cuir a-steach am facal-faire agad gus cothrom fhaighinn air aithrisean mu " "dhèidhinn duilgheadas a bha aig prògraman a t-siostaim" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "Dèan aithris air duilgheadas..." -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "Dèan aithris air mearachd dhan luchd-leasachaidh" @@ -350,9 +352,8 @@ "an executable a thèid a ruith fo inneal sgrùdadh na cuimhne aig valgrind " "airson greim fhaighinn air aoidion cuimhne" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "" @@ -364,17 +365,17 @@ msgid "Error: %s is not an executable. Stopping." msgstr "Mearachd: Chan eil %s 'na rud so-ghnìomhaichte. A' sgur dheth." -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "" "Dh'fhaoidte gum fàs an siostam agad neo-sheasmhach a-nis is gum b' fheairrde " "dhut ath-thòiseachadh." -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "Na cuir na traces ùra dhan aithris ach sgrìobh iad ann an stdout." -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" @@ -382,36 +383,36 @@ "Tòisich air seisean gdb eadar-ghnìomhach le core dump na h-aithrise (-o air " "a leigeil seachad; cha dèan e ath-sgrìobhadh na h-aithrise)" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" "Sgrìobh an aithris atharraichte san fhaidhle a tha ann 's na atharraich an " "aithris thùsail" -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "" "Thoir air falbh an core dump às an aithris às dèidh ath-ghintinn an stack " "trace" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "Tar-àithn CoreFile na h-aithrise" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "Tar-àithn ExecutablePath na h-aithrise" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "Tar-àithn ProcMaps na h-aithrise" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "Ath-thog fiosrachadh pacaid na h-aithrise" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -429,33 +430,33 @@ "siostaim ach ma nì thu sin, chan urrainn dha retrace a dhèanamh air " "tuislidhean ach feadhainn san sgaoileadh a tha a' ruith an-dràsta fhèin." -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" "Seall adhartas an luchdaidh a-nuas/an stàlaidh nuair a stàlaichear pacaidean " "sa bhogsa-ghainmhich" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "" "Cuir stampa-ama air beulaibh teachdaireachdan an loga, airson gnìomhachadh " "batch" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" "Cruthaich is cleachd ionadan-tasgaidh le treas-phàrtaidhean o thùsan a " "chaidh a shònrachadh ann an aithrisean" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "" "Pasgan an tasgadain airson pacaidean a chaidh a luchdadh a-nuas dhan bhogsa-" "ghainmhich" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." @@ -464,7 +465,7 @@ "sam bith o seo a-mach gun dèid pacaid sam bith a chaidh a luchdadh a-nuas " "fhosgladh 's a chur dhan bhogsa-ghainmhich seo mu thràth." -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " @@ -475,7 +476,7 @@ "retraced stack traces a luchdadh suas (dìreach mur an deach -g, -o no -s a " "shònrachadh)" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." @@ -483,29 +484,29 @@ "Seall na retraced stack traces is faighnich dhìom mus dèid an cur gu stòr-" "dàta nan tuislidhean." -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" "An t-slighe gun stòr-dàta sqlite dùblaichte (bun-roghainn: cha doirear sùil " "a bheil iad dùblaichte)" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "Chan urrainn dhut -C a chleachdadh às aonais -S. A' stad." #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "A bheil e ceart gu leòr an cur mar cheanglachain? [y/n]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "Tha coltas nach deach a' phacaid seo a stàladh mar bu chòir" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " @@ -514,8 +515,8 @@ "Chan e pacaid %s oifigeil a tha seo. Thoir air falbh pacaid sam bith a tha " "le treas-phàrtaidh 's feuch ris a-rithist." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -528,26 +529,26 @@ "\n" " %s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "Tha sinn duilich ach dhùin am prògram \"%s\" gu h-obann." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "Duilgheadas ann an %s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." @@ -556,56 +557,56 @@ "dha an duilgheadas a sgrùdadh gu fèin-obrachail is aithris a chur dhan luchd-" "leasachaidh." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "Aithris duilgheadais mhì-dhligheach" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "Chan eil cead-inntrigidh agad dhan aithris duilgheadais seo." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "" "Chan eil àite gu leòr air an diosg gus an aithris seo a làimhseachadh." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "" "Feumaidh tu pacaid no PID a shònrachadh. Faic --help airson barrachd " "fiosrachaidh." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "Chaidh cead a dhiùltadh" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." @@ -613,44 +614,44 @@ "Chan eil am pròiseas a shònraich thu a' buntainn riut. Ruith am prògram seo " "mar shealbhadair a' phròiseis no mar root." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "PID mì-dhligheach" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "Chan eil ID a' phròiseis a shònraich thu a' buntainn do phrògram." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "Cha do lorg an sgriobt %s pacaid air a bheil buaidh" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "Chan eil a' phacaid %s ann" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "Cha ghabh an aithris a chruthachadh" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "Ag ùrachadh aithris an duilgheadais" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -663,8 +664,8 @@ "\n" "Cruthaich aithris ùr le \"apport-bug\"." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -684,30 +685,30 @@ "\n" "A bheil thu cinnteach gu bheil thu airson leantainn air adhart?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "Cha deach fiosrachadh a bharrachd a chruinneachadh." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "Dè seòrsa duilgheadas tha thu airson aithris a dhèanamh air?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "Buaidh nach aithne dhuinn" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "Chan aithne dhuinn a' bhuaidh \"%s\"." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." @@ -715,39 +716,39 @@ "An dèidh dhut an teachdaireachd seo a dhùnadh. briog air uinneag aplacaid " "gus aithris a dhèanamh air duilgheadas leis." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "Cha b' urrainn dha xprop ID pròiseas na h-uinneige a dhearbhadh" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "Sònraich ainm na pacaid." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "" "Cuir taga a bharrachd ris an aithris. 'S urrainn dhut a shònrachadh iomadh " "turas." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " @@ -758,21 +759,21 @@ "de bhuaidhean air a bheil eòlas. (Tuigear dheth seo ma tha argamaid " "shingilte air a chur ann)." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "" "Briog air uinneag mar thargaid gus aithris a dhèanamh air duilgheadas." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "" "Tòisich sa mhodh ùrachadh bhugaichean. Gabhaidh seo ri --package ma tha feum " "air." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" @@ -780,8 +781,8 @@ "Clàraich buga mu dhèidhinn buaidh. (Tuigear dheth seo mas e ainm na buaidhe " "an aon argamaid.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" @@ -789,8 +790,8 @@ "Sònraich ainm na pacaid sa mhodh --file-bug. Tha seo roghainneil ma chaidh --" "pid a shònrachadh. (Tuigear dheth seo mas e ainm na pacaid an aon argamaid.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " @@ -800,13 +801,13 @@ "shònrachadh, bidh barrachd fiosrachaidh san aithris. (Tuigear dheth seo mas " "e pid an aon argamaid.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "Tha am pid a shònraich thu 'na aplacaid chrochte." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " @@ -816,8 +817,8 @@ "an fheadhainn a tha ri dhèiligeadh ann an %s. (Tuigear dheth seo mas e am " "faidhle an aon argamaid.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " @@ -828,49 +829,49 @@ "urrainn dhut aithris a dhèanamh leis an fhaidhle às a dhèidh sin no o " "choimpiutair eile." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "Clò-bhuail àireamh an tionndaidh aig Apport." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "" "Cuireadh seo air bhog apport-retrace ann an uinneag tèirmineil gus sgrùdadh " "a dhèanamh air an tuisleadh." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "" "Ruith seisean gdb as aonais gun a bhith a' luchdadh a-nuas nan samhlaidhean " "dì-bhugachaidh" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "Ùraich %s le Stack Trace a tha gu tur samhlach" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "" "Tha aithris an duilgheadais seo a' buntainn ri prògram nach eil stàlaichte " "tuilleadh." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " @@ -879,78 +880,78 @@ "Thachair an duilgheadas leis a' phrògram %s ach chaidh atharrachadh on a " "thachair an tuisleadh." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "Chaidh an aithris seo a dhochann is cha ghabh a làimhseachadh." #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "Tha an aithris seo a' buntainn do phacaid nach eil stàlaichte." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "" "Thachair mearachd fhad 's a bha sinn a' feuchainn ri aithris na mearachd seo " "a làimhseachadh:" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "" "Cha b' urrainn dhuinn a' phacaid no ainm na pacaid thùsail a dhearbhadh." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "Chan urrainn dhuinn brabhsair-lìn a thòiseachadh" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "Chan urrainn dhuinn brabhsair-lìn a thòiseachadh gus %s fhosgladh." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "" "Cuir a-steach fiosrachadh a' chunntais agad airson siostam tracadh nam " "bugaichean aig %s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "Duilgheadas leis an lìonra" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" "Chan urrainn dhuinn ceangal ri stòr-dàta nan tuisleadh, thoir sùil air a' " "cheangal agad ris an eadar-lìon." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "Gainnead cuimhne" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "" "Chan eil cuimhne gu leòr air an t-siostam agad is chan urrainn dha aithris " "an tuislidh seo a làimhseachadh." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -961,14 +962,14 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "Tha sinn eòlach air an duilgheadas seo mu thràth" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " @@ -978,8 +979,8 @@ "aithris a' bhuga sa bhrabhsair-lìn agad. Thoir sùil ach a bheil fiosrachadh " "ùr sam bith agad a dh'fhaodadh a bhith feumail dhan luchd-leasachaidh." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "" "Fhuair an luchd-leasachaidh aithris air an duilgheadas seo mu thràth. Tapadh " --- apport-2.20.3.orig/po/gl.po +++ apport-2.20.3/po/gl.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:15+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:46+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: gl\n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "Apport" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr "Desculpas! Produciuse un erro interno." -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "Se segue tendo problemas, tente reiniciar o equipo." @@ -57,11 +57,11 @@ msgid "Ignore future problems of this program version" msgstr "Ignorar futuros problemas desta versión do programa" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "Mostrar detalles" @@ -69,21 +69,21 @@ msgid "_Examine locally" msgstr "_Examinar localmente" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "Manter pechado" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "Continuar" @@ -99,9 +99,10 @@ "Estase recollendo información que pode axudar aos desenvolvedores a arranxar " "o problema do que está informando." +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "Enviando a información do problema" @@ -109,8 +110,8 @@ msgid "Uploading problem information" msgstr "Enviando información do erro" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -122,103 +123,103 @@ msgid "Apport crash file" msgstr "Ficheiro de ruptura de Apport" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "(datos binarios)" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "O aplicativo %s detívose de forma inesperada." -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "Sentímolo, %s pechouse de maneira inesperada." -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "Sentímolo, %s sufriu un erro interno." -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "Enviarlle un informe do problema aos desenvolvedores?" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "Enviar" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "Forzar o peche" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "Volver a iniciar" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "O aplicativo %s non responde." -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "O programa «%s» non responde." -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "Paquete: %s" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "Sentímolo, produciuse un problema ao instalar o software." -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "O aplicativo %s sufriu un erro interno." -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "O aplicativo %s pechouse de maneira inesperada." -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "Ignorar os futuros problemas deste tipo" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "Agochar os detalles" @@ -231,24 +232,25 @@ msgid "Destination directory exists and is not empty." msgstr "O directorio de destino existe e non está baleiro." -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "Nome de usuario:" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "Contrasinal:" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "Recompilando información do erro" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "Recopilando información do erro" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." @@ -256,7 +258,7 @@ "A información recollida pódeselle enviar aos desenvolvedores para que " "melloren o aplicativo. Isto podería levar uns minutos." -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "Enviando a información do erro" @@ -283,13 +285,13 @@ "Introduza o seu contrasinal para acceder aos informes de problemas dos " "programas do sistema" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "Informar dun problema..." -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "Informar dun fallo aos desenvolvedores" @@ -340,9 +342,8 @@ "o executábel que se executa baixo a ferramenta de comprobación de memoria " "valgrind para a detección de perdas de memoria" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "" @@ -354,18 +355,18 @@ msgid "Error: %s is not an executable. Stopping." msgstr "Erro: %s no né un executábel. Paramos." -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "" "O sistema poderíase volver inestábel agora e podería haber que reinicialo." -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "" "Non poñer as trazas novas no informe senón escribilas na saída estándar " "(stdout)." -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" @@ -373,36 +374,36 @@ "Iniciar unha sesión gdb interactiva coa saída núcleo do informe (-o " "ignorada; non escribe o informe)" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" "Escribir o informe modificado no ficheiro dado no canto de modificar o " "informe orixinal" -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "" "Eliminar a saída do núcleo do informe despois da rexeneración da traza da " "pila" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "Sobreescribir o CoreFile do informe" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "Sobreescribir o ExecutablePath do informe" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "Sobreescribir ProcMaps do informe" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "Reconstruír a información do informe de paquete" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -419,31 +420,31 @@ "sistema, mais só poderá analizar problemas serios que acontezan na versión " "en execución actualmente." -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" "Informar do progreso da descarga/instalación mentres se instalan paquetes na " "área de probas" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "" "Engadir ao inicio a marca de tempo nas mensaxes do rexistro, para operacións " "en lote" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" "Crear e empregar repositorios de terceiros a partir de orixes indicadas en " "informes" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "Cartafol de caché para os paquetes descargados na área de probas" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." @@ -451,7 +452,7 @@ "Directorio para os paquetes non empaquetados. As execucións futuras asumirán " "que calquera paquete xa descargado tamén está extraído nesta caixa de area." -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " @@ -461,7 +462,7 @@ "datos. Isto úsase ao especificar un ID de falla para actualizar as trazas da " "pila retrazada (só no caso de que se especifique -g, -o ou -s)" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." @@ -469,29 +470,29 @@ "Mostrar a pila retrazada e pedir confirmación antes de enviala á base de " "datos de falla." -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" "Ruta á base de datos de duplicados de sqlite (por omisión: non se verifica " "se hai duplicados)" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "Non é posíbel empregar -C sen -S. Paramos." #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "Acepta enviar estes como anexos? [y/n]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "Este paquete semella que non está instalado correctamente" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " @@ -500,8 +501,8 @@ "Este non é un paquete oficial de %s. Elimine os paquetes de terceiros e " "ténteo de novo." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -514,26 +515,26 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "programa descoñecido" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "Desculpe, o programa «%s» pechouse inesperadamente" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "Problema en %s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." @@ -541,55 +542,55 @@ "O seu computador non dispón de memoria libre abondo para analizar " "automaticamente o problema e enviarlle un informe aos desenvolvedores." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "O informe de problema non é válido" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "Non ten permiso para acceder a este informe de problema." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "Erro" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "Non hai espazo abondo no disco para procesar este informe." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "Non se especificou ningún paquete" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "" "Ten que especificar un paquete ou un PID. Vexa --axuda para obter máis " "información." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "Permiso denegado" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." @@ -597,44 +598,44 @@ "O proceso especificado non lle pertence. Execute este programa como " "propietario do proceso ou como root." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "O PID non é válido" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "O ID de proceso especificado non pertence a ningún programa." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "O script «symptom» %s non determinou ningún paquete afectado" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "O paquete %s non existe" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "Non se pode crear o informe" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "Actualización de informe de problemas" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -646,8 +647,8 @@ "\n" "Por favor, cree un novo informe con «apport-bug»." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -667,30 +668,30 @@ "\n" "Confirma que desexa continuar?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "Non se recolleu información adicional." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "De que tipo de problema quere informar?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "Síntoma descoñecida" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "Non se coñece a síntoma «%s»." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." @@ -698,40 +699,40 @@ "Despois de pechar esta mensaxe, prema nunha xanela do aplicativo para " "informar sobre este problema." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "" "Produciuse un fallo en «xprop» ao determinar o ID de proceso da xanela" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "%prog " -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "Especifique o nome do paquete." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "" "Engade unha etiqueta extra ao informe. Pódese especificar varias veces." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" "%prog [opcións] [síntoma|pid|paquete|ruta ao programa|ficheiro .apport ou " ".crash]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " @@ -741,20 +742,20 @@ "opcional, ou só un --pid. Se non se fornece ningún, mostra unha lista de " "síntomas coñecidas. (Implícito se se fornece un único argumento.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "Prema nunha xanela como un obxectivo para informar do problema." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "" "Iniciar en modo de actualización de erros. Pode aceptar un --package " "opcional." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" @@ -762,8 +763,8 @@ "Ficheiro dun informe de erro dunha síntoma. (Implícito se se deu como único " "argumento o nome da síntoma)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" @@ -771,8 +772,8 @@ "Especificar un nome de paquete no modo --file-bug. Isto é opcional se se " "especifica un --pid. (Tamén se o nome do paquete foi dado só como argumento)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " @@ -782,13 +783,13 @@ "informe de erro conterá máis información. (Implica se o PID se fornece só " "como un argumento.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "O pid fornecido é un aplicativo bloqueado." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " @@ -797,8 +798,8 @@ "Informe sobre a falla no ficheiro dado .apport ou .crash en lugar de facelo " "nos pendentes en %s. (Tamén se o ficheiro foi dado só como argumento) ." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " @@ -808,46 +809,46 @@ "no canto de enviala. Este ficheiro pódese enviar máis adiante desde unha " "máquina diferente." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "Imprimir o número da versión do Apport." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "" "Isto iniciará apport-retrace nunha xanela de terminal para examinar o peche " "inesperado." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "Executar sesión de gdb" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "Executar sesión de gdb sen descargar os símbolos de depuración" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "Actualizar %s coa pila de chamadas simbólicas completas" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "" "Este informe de problema aplícase a un programa que xa non está instalado.." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " @@ -855,73 +856,73 @@ msgstr "" "O problema aconteceu co programa %s, que mudou desde que se produciu o fallo." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "O informe de erro está danado e non pode ser procesado." #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "O informe refírese a un paquete que non está instalado." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "Produciuse un erro ao tentar procesar este informe de problema:" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "Non se puido determinar o paquete ou o nome do paquete fonte." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" -msgstr "Non se pode arrancar o navegador web" +msgstr "Non é posíbel iniciar o navegador web" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." -msgstr "Non se pode arrancar o navegador para abrir %s." +msgstr "Non é posíbel iniciar o navegador para abrir %s." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "" "Introduza a información da súa conta no sistema de seguimento de erros %s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "Erro de conexión" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" "É imposíbel conectar coa base de datos de fallos. Verifique a conexión á " "Internet." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "Memoria esgotada" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "" "O sistema non posúe memoria abondo para procesar este informe de erro," -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -932,14 +933,14 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "Problema coñecido" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " @@ -949,8 +950,8 @@ "web. Comprobe se pode engadir información adicional que lle poida resultar " "de utilidade aos desenvolvedores." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "Este problema xa foi informado ao desenvolvedores. Grazas!" --- apport-2.20.3.orig/po/gu.po +++ apport-2.20.3/po/gu.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:15+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:46+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: gu\n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr "" -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "" @@ -57,11 +57,11 @@ msgid "Ignore future problems of this program version" msgstr "" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "" @@ -69,21 +69,21 @@ msgid "_Examine locally" msgstr "" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "" @@ -97,9 +97,10 @@ "you report." msgstr "" +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "" @@ -107,8 +108,8 @@ msgid "Uploading problem information" msgstr "" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -118,103 +119,103 @@ msgid "Apport crash file" msgstr "" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "" -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "" -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "" -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "" -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "" -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "" -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "" -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "" -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "" @@ -227,30 +228,31 @@ msgid "Destination directory exists and is not empty." msgstr "" -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." msgstr "" -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "" @@ -273,13 +275,13 @@ "Please enter your password to access problem reports of system programs" msgstr "" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "" -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "" @@ -320,9 +322,8 @@ "detection" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "" @@ -332,46 +333,46 @@ msgid "Error: %s is not an executable. Stopping." msgstr "" -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -381,72 +382,72 @@ "be able to retrace crashes that happened on the currently running release." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " "neither -g, -o, nor -s are specified)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "" #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " "and try again." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -459,26 +460,26 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "અજાણયો પ્રોગ્રામ" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "માફ કરશો, પ્રોગ્રામ %s એકાએક બંધ થયો છે" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "%s માં તકલીફ છે" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." @@ -486,55 +487,55 @@ "તમારા કૉમ્પ્યૂટર માં મુશ્કેલીનુ આપોઆપ વિશ્લેષણ કરવા માટે અને ડેવલોપરોને " "રિપૉર્ટ (હકીકત) મોકલાવવા માટે પુરતા પ્રમાણ માં મુકત મેમરી નથી." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "અપ્રમાણ મુશ્કેલી રિપૉર્ટ" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "આપને મુશ્કેલી રિપૉર્ટ જોવાની પરવાનગી નથી." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "આ રિપૉર્ટ ને આગળ વધારવા માટે પુરતી માત્રામાં ડિસ્ક સ્પેઇસ મોજુદ નથી." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "કોઈ પેકેજ જણાવેલ નથી" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "" "તમારે ચોક્કસ પેકેજ અથવા પીઆઈડી નો ઉલ્લેખ કરવાની જરૂર છે. વધુ વિઞત માટે --મદદ " "જુઓ." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." @@ -542,44 +543,44 @@ "જણાવેલ પ્રોસેસ તમારી સાથે જોડાયેલી નથી. મહેરબાની કરીને આ પ્રોગ્રામ તમે " "પ્રોસેસ ના માલિક અથવા રૂટ તરીકે ચલાવો." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "અમાન્ય પીઆઈડી" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "જણાવેલ પ્રોસેસ આઈડી પ્રોગ્રામ સાથે જોડાયેલું નથી." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "પેકેજ %s નુ અસ્તિત્વ નથી" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -587,8 +588,8 @@ "Please create a new report using \"apport-bug\"." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -600,90 +601,90 @@ "Do you really want to proceed?" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "કયા પ્રકારનો પ્રશ્ન આપ રજૂ કરવા માગો છો?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "અજાણયુ ચિહ્ન" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "ચિહ્ન %s જાણીતુ નથી." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " "a single argument is given.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" @@ -691,21 +692,21 @@ "પેકેજ ના નામનો --ફાઇલ-બગ મોડ માં ઉલ્લેખ કરો. આ વૈકલ્પિક છે જો --પીઆઈડી નો " "ઉલ્લેખ હોય. (સૂચિત જો ચિહ્ન નુ નામ ફકત આર્ગ્યૂમેન્ટ તરીકે આપેલ હોય.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " @@ -714,125 +715,125 @@ "પતન વિશે ની રજુઆત નિકાલ ન થયેલા %s ના બદલે આપેલી .અપોર્ટ અથવા .ક્રૅશ ફાઈલ " "માંથી કરો. (સૂચિત જો એક આર્ગ્યૂમેન્ટ આપેલ હોય.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " "machine." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "અપોર્ટ વર્ઝન નંબર ની નકલ કાઢો." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "" "આ મુશ્કેલી અહેવાલ પ્રોગ્રામને લાગુ પડે છે જે હવે વધુ કાંઇ સ્થાપીત નથી." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " "occurred." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "આ સમસ્યા રિપૉર્ટ નુકસાન પામેલ છે અને આગળ વધી નહી શકાય." #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "આ રિપૉર્ટ પેકેજ સાથે જોડાયેલ છે જે ઇન્સ્ટોલ (સ્થાપીત) થયેલ નથી." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "પેકેજ અથવા સૉર્સ પેકેજ નુ નામ શોધી નથી શકાયુ." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "વેબ બ્રાઊઝર શરુ કરવામાં સમર્થ નથી." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "%s ને ખોલવા માટે વેબ બ્રાઊઝર શરુ કરવામાં સમર્થ નથી." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "" "મહેરબાની કરીને %s બગ ટ્રૅકીંગ સિસ્ટમ માટે તમારી અકાઉન્ટની માહીતી દાખલ કરો" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "નેટવર્ક માં સમસ્યા" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" "ક્રૅશ ડેટાબેઞ સાથે જોડાણ થઈ શકે તેમ નથી. મહેરબાની કરીને તમારા ઈનટરનેટનુ " "જોડાણ તપાશો." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "મેમરીની થકાવટ" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "" "આ ક્રૅશ રિપૉર્ટ ને પ્રોસેસ કરવા માટે તમારી સિસ્ટમમાં પૂરતી મેમરી નથી." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -843,14 +844,14 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "મુશ્કેલી પહેલાંથી જાણીતી છે." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " @@ -859,8 +860,8 @@ "આ સમસ્યા વેબ બ્રાઊઝરમાં દેખાતા બગ રિપૉટમાં પહેલાંથી રજુ કરેલ છે. મહેરબાની " "કરીને ચકાસો કે તમે વધુ માહીતી ઊમેરી શકો છો કે જે ડેવલોપરો માટે ઊપયોગી થઈ શકે." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "" --- apport-2.20.3.orig/po/he.po +++ apport-2.20.3/po/he.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:15+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:46+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: he\n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr "אירעה שגיאה פנימית, עמך הסליחה." -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "אם הבחנת בבעיות נוספות, כדאי לנסות להפעיל את המחשב מחדש." @@ -57,11 +57,11 @@ msgid "Ignore future problems of this program version" msgstr "התעלמות בתקלות עתידיות בגרסת תכנית זו" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "הצגת פרטים" @@ -69,21 +69,21 @@ msgid "_Examine locally" msgstr "_בדיקה מקומית" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "להשאיר סגור" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "להמשיך" @@ -97,9 +97,10 @@ "you report." msgstr "המידע נאסף כדי לעזור למפתחים לתקן את התקלה עליה אתה מדווח." +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "מעלה את פרטי התקלה" @@ -107,8 +108,8 @@ msgid "Uploading problem information" msgstr "מעלה את נתוני התקלה" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -119,103 +120,103 @@ msgid "Apport crash file" msgstr "קובץ קריסה של Apport" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "(נתונים בינריים)" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "היישום %s הפסיק לפעול במפתיע, עמך הסליחה." -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "היישום %s נסגר במפתיע, עמך סליחה." -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "היישום %s סבל משגיאה פנימית, עמך הסליחה." -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "האם לשלוח דוח תקלה למפתחים?" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "שליחה" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "לסגור בכוח" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "הפעלה מחדש" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "היישום %s הפסיק להגיב." -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "התכנית \"%s\" הפסיקה להגיב." -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "חבילה: %s" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "אירעה תקלה בעת התקנת תוכנות, עמך הסליחה." -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "היישום %s נתקל בתקלה פנימית." -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "היישום %s נסגר במפתיע" -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "התעלמות מתקלות חוזרות ונשנות מסוג זה" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "הסתרת הפרטים" @@ -228,24 +229,25 @@ msgid "Destination directory exists and is not empty." msgstr "ספריית היעד קיימת ואינה ריקה." -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "נאספים נתונים על התקלה" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "אוסף מידע אודות התקלה" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." @@ -253,7 +255,7 @@ "ניתן לשלוח את המידע שנאסף למפתחים כדי לשפר את התכנה. פעולה זו עלולה להמשך " "מספר דקות." -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "נתוני התקלה נשלחים" @@ -277,13 +279,13 @@ msgstr "" "נא להזין את הססמה שלך כדי לגשת לדיווחים על תקלות שנמצאו בתכניות המערכת" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "דיווח על תקלה..." -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "דיווח על תפקוד לקוי למתכנתים" @@ -324,9 +326,8 @@ "detection" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "התקנת חבילה נוספת לתוך ארגז החול (ניתן לציין מספר פעמים)" @@ -336,16 +337,16 @@ msgid "Error: %s is not an executable. Stopping." msgstr "" -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "" "המערכת שלך עלולה להפוך לבלתי יציבה כעת ויתכן שיהיה צורך בהפעלת המחשב מחדש." -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "אין להוסיף את העקבות החדשים אל הדוח, אך יש לכתוב אותם אל stdout." -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" @@ -353,32 +354,32 @@ "התחלת מופע אינטראקטיבי של gdb עם איסוף הליבה של הדוח (‎-o ignored; הדוח לא " "ישוכתב)" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -393,25 +394,25 @@ "הארגומנט יהיה „system“, ייעשה שימוש בקובצי התצורה של המערכת אך במצב כזה ניתן " "יהיה רק לעקוב מחדש אחר הקריסות שהתחרשו בהפצה הפעילה הנוכחית." -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "דיווח על תהליך של הורדה/התקנה בעת התקנת חבילות בתוך ארגז החול" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "הוספת קידומת חותמת זמן להודעות ביומן, לצורך פעולות אצווה" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "תיקיית המטמון לחבילות שהורדו בארגז החול" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." @@ -419,7 +420,7 @@ "ספרייה של חבילות בלתי ארוזות. הפעלות עתידיות יניחו שכל חבילה שכבר הורדת " "תחולץ גם כן לארגז חול זה." -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " @@ -428,34 +429,34 @@ "נתיב לקובץ עם פרטי האימות מול מסד נתוני הקריסות. בקובץ ייעשה שימוש בעת ציון " "מזהה קריסה כדי לעלות מעקבי מחסניות מחודשים (רק אם לא צוינו ‎-g, -o, או ‎-s)" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." msgstr "" "הצגת מעקבי מחסניות מחודשים ובקשת אישור בטרם שליחה למסד נתוני הקריסות." -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "" #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "האם זה בסדר לשלוח קבצים מצורפים אלה? [y/n]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "מסתבר כי חבילה זו אינה מותקנת כראוי" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " @@ -463,8 +464,8 @@ msgstr "" "זוהי אינה חבילה רשמית של %s. נא להסיר כל חבילת צד־שלישי שהיא ולנסות שוב." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -477,123 +478,123 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "תכנית בלתי מוכרת" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "התכנה „%s“ נסגרה במפתיע, עמך הסליחה" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "תקלה ב-%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." msgstr "" "למחשבך אין די זכרון פנוי כדי לנתח את התקלה אוטומטית ולשלוח דוח למפתחים." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "דוח תקלה שגוי" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "אינך מורשה לגשת לדוח תקלה זה." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "שגיאה" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "אין די שטח פנוי בכונן כדי לעבד דוח זה." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "לא צויינה כל חבילה" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "עליך לציין חבילה או מזהה תהליך. עיין ב --help לקבלת מידע נוסף." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "הגישה נדחתה" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." msgstr "" "התהליך שצויין אינו שייך לך. נא להריץ תוכנה זו כבעל התהליך או כמנהל (root)." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "מזהה התהליך שגוי" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "מזהה התהליך שצויין אינו שייך לאף תוכנית." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "החבילה %s אינה קיימת" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "דוח הבעיה מתעדכן" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -601,8 +602,8 @@ "Please create a new report using \"apport-bug\"." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -621,66 +622,66 @@ "\n" "האם ברצונך להמשיך?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "מהי הבעיה עליה ברצונך לדווח?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "תסמין לא מוכר" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "התסמין „%s“ אינו מוכר." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "נא לציין את שם החבילה." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " @@ -690,32 +691,32 @@ "אם אף אחד מאלה לא הוזן, תוצג רשימה של סימפטומים ידועים. (מרומז במקרה שצוין " "ארגומנט יחיד.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" msgstr "הגשת דיווח על תסמין. (מרומז אם שם התסמין ניתן רק כארגומנט.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " @@ -724,13 +725,13 @@ "יש לציין תכנית פעילה במצב ‎--file-bug. אם פרמטר זה יתווסף דיווח הבאג יכיל " "מידע נוסף. (כלומר שהמזהה התהליך, ה־pid, ניתן כארגומנט בלבד.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "ה־pid (מזהה היישום) שסופק מצביע על יישום תקוע." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " @@ -739,120 +740,120 @@ "דיווח על התקלה מקובץ ‎.apport או ‎.crash נתון במקום אלו שממתינים ב־%s. " "(מרומז אם ניתן קובץ כארגומנט יחיד.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " "machine." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "הצגת מספר הגרסה של Apport." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "פעולה זו תפעיל את apport-retrace בחלון מסוף כדי לנתח את הקריסה." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "הפעלת gdb" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "הפעלת gdb מבלי להוריד סימני ניפוי שגיאות" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "עדכון %s במעקב ערימה בסמליות מלאה" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "דיווח תקלה זה חל על תכנית שאינה מותקנת עוד." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " "occurred." msgstr "התקלה אירעה בתכנית %s שהשתנתה מאז קריסתה האחרונה." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "דוח תקלה זה פגום ולכן לא ניתן לעבד אותו." #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "הדוח שייך לחבילה שאינה מותקנת." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "אירעה שגיאה במהלך ניסיון עיבוד דוח תקלה זה:" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "לא ניתן לאתר את החבילה או את שם חבילת המקור." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "לא ניתן להפעיל את דפדפן האינטרנט." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "לא ניתן להפעיל את דפדפן האינטרנט כדי לפתוח את %s." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "נא להזין את נתוני החשבון שלך עבור מערכת דיווח התקלות %s." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "תקלת רשת" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "לא ניתן להתחבר אל מסד נתוני הקריסות, יש לבדוק את החיבור לאינטרנט." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "תשישות הזכרון" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "למערכת שלך אין די זכרון פנוי כדי לעבד דוח תקלה זה." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -863,14 +864,14 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "התקלה כבר ידועה" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " @@ -879,8 +880,8 @@ "תקלה זו כבר דווחה בדוח התקלה המוצג בדפדפן האינטרנט. נא לבדוק האם ניתן להוסיף " "מידע נוסף שעלול לעזור למפתחים בפתרון התקלה." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "תקלה זו כבר דווחה למתכנתים. תודה רבה!" --- apport-2.20.3.orig/po/hi.po +++ apport-2.20.3/po/hi.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:15+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:46+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: hi\n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr "क्षमा करें, एक आंतरिक त्रुटि हुई." -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "" @@ -57,11 +57,11 @@ msgid "Ignore future problems of this program version" msgstr "" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "विवरण दिखाएँ" @@ -69,21 +69,21 @@ msgid "_Examine locally" msgstr "" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "जारी रखें" @@ -97,9 +97,10 @@ "you report." msgstr "" +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "" @@ -107,8 +108,8 @@ msgid "Uploading problem information" msgstr "" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -118,103 +119,103 @@ msgid "Apport crash file" msgstr "" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "" -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "" -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "" -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "भेजें" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "पुन: लॉन्‍च करें" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "" -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "" -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "" -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "" -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "" -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "विवरण छिपाएँ" @@ -227,30 +228,31 @@ msgid "Destination directory exists and is not empty." msgstr "" -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." msgstr "" -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "" @@ -273,13 +275,13 @@ "Please enter your password to access problem reports of system programs" msgstr "" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "" -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "" @@ -320,9 +322,8 @@ "detection" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "" @@ -332,46 +333,46 @@ msgid "Error: %s is not an executable. Stopping." msgstr "" -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -381,64 +382,64 @@ "be able to retrace crashes that happened on the currently running release." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " "neither -g, -o, nor -s are specified)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "" #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "ऐसा लगता है कि इस पैकेज को सही ढंग से स्थापित नहीं करा गया है" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " @@ -447,8 +448,8 @@ "यह एक आधिकारिक % s पैकेज नहीं है. किसी भी तीसरे पक्ष के पैकेज को हटाऐं और " "फिर कोशिश करें." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -461,26 +462,26 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "अज्ञात प्रोग्राम" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "क्षमा करें, %s प्रोग्राम अनपेक्षित ढंग से बंद हो गया।" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "%s में समस्या" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." @@ -488,56 +489,56 @@ "आपके कंप्युटर में समस्या का स्वतः विश्लेषण करने और विकासकर्ताओं को सूचित " "करने के लिये पर्याप्त रिक्त स्मृति नहीं है।" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "अमान्य समस्या सूचना" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "इस समस्या रिपोर्ट में आपके पहुँच की अनुमति नहीं है." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "त्रुटी" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "" "इस रिपोर्ट को प्रक्रिया करने हेतु डिस्क में प्रर्याप्त जगह उपलब्ध नहीं है." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "" "आपको पैकेज या PID का विशिष्ट निर्देश देना होगा. अधिक जानकारी के लिए --help " "देखें." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "अनुमति निषेधित" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." @@ -545,44 +546,44 @@ "यह आपका विशिष्ट निर्देश नहीं है. कृपया इस प्रोग्राम को प्रक्रिया " "उत्तराधिकारी के रुप में या रुट में चलाएं." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "अवैध पीआईडी" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "विशिष्ट निर्देश आईडी प्रोग्राम का हिस्सा नहीं है." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "पैकेज %s मोजूद नहीं है" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "रिपोर्ट बनाई नहीं जा सकती" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "समस्या रिपोर्ट को अद्यतन कर रहा है" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -594,8 +595,8 @@ "\n" "कृपया \"apport-bug\" का उपयोग कर एक नया रिपोर्ट बनाएं." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -615,30 +616,30 @@ "\n" "क्या आप आगे की प्रक्रिया करेंगें?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "अतरिक्त सूचना संगृहित नहीं की जाएगी." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "किस तरह की समस्या का आप रिपोर्ट करना चाहते हैं?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "अज्ञात लक्षण" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "यह लक्षण \"%s\" ज्ञात नहीं है." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." @@ -646,37 +647,37 @@ "इस संदेश के बंद होने के पश्चात कृपया अनुप्रयोग विंडो पर क्लिक कर समस्या के " "बारे में रिपोर्ट करें." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "xprop विंडो की प्रक्रिया आईडी को निर्धारित करने में असफल हो गया" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "%prog " -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "संकुल नाम निर्दिष्ट करें." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "रिपोर्ट में एक अतरिक्त टैग जोड़े जिससे एकाधिक बार का उल्लेख हो सके." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " @@ -686,18 +687,18 @@ "की या केवल एक --pid की. यदि कोई भी नहीं दिया हुआ हो, तो ज्ञात लक्षणों की " "सूची दिखाएं. (यदि एक ही तर्क दिया हो तो लागु करें.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "एक समस्या रपट दर्ज करने हेतु लक्ष्य विंडो पर क्लिक करें." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "बग अद्यतन पद्धति में चालु करें. एक विकल्प --package ले सकते हैं ." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" @@ -705,8 +706,8 @@ "लक्षण के बारे में एक बग रिपोर्ट दाखिल करें. (जब लक्षण के नाम केवल तर्क के " "रुप में दिया गया हो तो लागु करें.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" @@ -715,8 +716,8 @@ "का वर्णन होगा. (जब पैकेज का नाम केवल तर्क के रुप में दिया गया हो तो लागु " "करें.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " @@ -726,13 +727,13 @@ "है, तो दोष रपट अधिक सूचनात्मक हो जाएगा.(यह लागू हो यदि pid में केवल तर्क " "दिया होगा.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " @@ -741,120 +742,120 @@ "विध्वंस रिपोर्ट को दिए गए .apport या .crash संचिका से करें बजाए %s में जो " "विचाराधीन है. (यदि तर्क के रुप में केवल संचिका दिया गया हो.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " "machine." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " "occurred." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "यह समस्या सूचना क्षतिग्रस्त है तथा संसाधित नहीं की जा सकती." #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "यह सूचना एक असंस्थापित पैकेज से संबंधित है ." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -862,22 +863,22 @@ "%s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " "helpful for the developers." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "" --- apport-2.20.3.orig/po/hr.po +++ apport-2.20.3/po/hr.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:15+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:47+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: hr\n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "Apport" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr "Nažalost, dogodila se unutrašnja greška." -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "" "Ako primjetite daljne probleme, pokušajte ponovno pokrenuti računalo." @@ -58,11 +58,11 @@ msgid "Ignore future problems of this program version" msgstr "Zanemari buduće probleme za progam ove inačice" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "Prikaži pojedinosti" @@ -70,21 +70,21 @@ msgid "_Examine locally" msgstr "_Pregledaj lokalno" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "Ostavi zatvoreno" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "Nastavi" @@ -100,9 +100,10 @@ "Skupljaju se informacije koje mogu pomoći razvojnom timu pri rješavanju " "problema koje prijavljujete." +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "Slanje informacija o problemu" @@ -110,8 +111,8 @@ msgid "Uploading problem information" msgstr "Učitavanje informacija o problemu" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -123,103 +124,103 @@ msgid "Apport crash file" msgstr "Apport datoteka o rušenju" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "(binarni podatci)" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "Aplikacija %s je neočekivano zaustavljena." -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "%s se neočekivano zatvorio." -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "%s je iskusio unutrašnju grešku." -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "Pošaljite izvještaj o problemu razvojnom timu?" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "Pošalji" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "Prisilno zatvoreno" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "Pokreni ponovo" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "Aplikacija %s više ne odgovara." -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "Program \"%s\" više ne odgovara." -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "Paket: %s" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "Problem se dogodio tijekom instalacije softvera." -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "Aplikacija %s je iskusila unutrašnju grešku." -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "Aplikacija %s se zatvorila neočekivano." -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "Zanemari buduće probleme ove vrste" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "Sakrij pojedinosti" @@ -232,24 +233,25 @@ msgid "Destination directory exists and is not empty." msgstr "Odredišni direktorji postiji i nije prazan." -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "Korisničko Ime:" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "Lozinka:" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "Prikupljanje Informacija o Problemu" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "Skupljanje informacija o problemu" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." @@ -257,7 +259,7 @@ "Prikupljene informacije mogu biti poslane razvijateljima kako bi se " "aplikacija poboljšala. Ovo može potrajati nekoliko minuta." -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "Prenos Informacija o Problemu" @@ -283,13 +285,13 @@ msgstr "" "Upišite svoju lozinku za pristup izvještajima problema programa sustava" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "Prijavite problem..." -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "Prijavite neispravnost razvojnom timu" @@ -341,9 +343,8 @@ "izvršna datoteka koja se pokreće pod valgrindovim alatom provjere memorije " "zbog otkrivanja problema s memorijom" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "Instaliraj dodatne pakete u sandbox (može se odrediti više puta)" @@ -353,15 +354,15 @@ msgid "Error: %s is not an executable. Stopping." msgstr "Greška: %s nije izvršna datoteka. Zaustavljanje." -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "Ne spremaj nove podatke u izvještaj, već ih zapiši u stdout." -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" @@ -369,35 +370,35 @@ "Pokreni interaktivnu gdb sesiju s izvještajima sadržaja jezgre (-o " "zanemareno; ne prepisuje izvještaj)" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" "Zapiši izmijenjen izvještaj za zadanu datoteku umjesto promjene izvornog " "izvještaja" -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "" "Ukloni sadržaj jezgre iz izvještaja nakon regeneracije opširnog zapisa" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "Zaobiđi datoteku jezgre izvještaja" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "Zaobiđi izvršnu putanju izvještaja" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "Zaobiđi ProcMaps izvještaja" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "Obnovi izvješća o informacijama paketa." -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -414,27 +415,27 @@ "onda samo biti moguće zapisivati rušenja koja su se dogodila na trenutno " "pokrenutom izdanju." -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" "Prijavi napredak preuzimanja/instalacije tijekom instalacije paketa u sandbox" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "Dodaj vremenske oznake u poruke zapisa, za skupne radnje" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" "Stvori i koristi repozitorije treće strane iz izvora navedenih u izvješću" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "Direktorij predmemorije za pakete preuzete u sandboxu" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." @@ -442,7 +443,7 @@ "Direktorij za neraspakirane pakete. Buduća pokretanja će pretpostaviti da " "svaki preuzeti paket je isto tako raspakiran u sandboxu." -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " @@ -452,7 +453,7 @@ "koristi pri određivanju ID-a rušenja za slanje ponovljenog opširnog " "zapisivanja (samo ako su -g, -o, ili -s određeni)" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." @@ -460,29 +461,29 @@ "Prikaži ponovljeno opširno zapisivanje i traži potvrdu prije slanja u bazu " "podataka rušenja." -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" "Putanja do kopije sqlite baze podataka (zadano: bez provjere ima li još " "kopija)" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "Ne možete koristiti -C bez -S. Zaustavljanje." #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "Jeli u redu otposlati ove privitke? [d/n]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "Izgleda da ovaj paket nije ispravno instaliran" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " @@ -491,8 +492,8 @@ "Ovo nije službeni %s paket. Uklonite sve pakete treće strane i pokušajte " "ponovno." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -505,26 +506,26 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "nepoznati program" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "Isprika, program \"%s\" se neočekivano zatvorio" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "Problem u %s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." @@ -532,98 +533,98 @@ "Vaše računalo nema dovoljno slobodne memorije za automatsku analizu problema " "i slanje izvještaja razvijateljima." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "Neispravan izvještaj o problemu" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "Niste ovlašteni za pristup ovom izvještaju o problemu." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "Greška" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "Nema dovoljno prostora na disku za obradu ovog izvještaja." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "Nema određenih paketa" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "" "Morate odrediti paket ili PID. Pogledajte --help za više informacija." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "Pristup odbijen" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." msgstr "" "Određeni proces vam ne pripada. Pokrenite ovaj program kao root korisnik." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "Neispravan PID" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "Određeni ID proces ne pripada programu." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "Skripta simptoma %s nije odredila zahvaćeni paket" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "Paket %s ne postoji" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "Ne mogu napraviti izvještaj" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "Nadopuna izvještaja problema" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -635,8 +636,8 @@ "\n" "Napravite novi izvještaj koristeći \"apport-bug\"." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -656,30 +657,30 @@ "\n" "Želite li stvarno nastaviti?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "Nisu prikupljene dodatne informacije." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "Kakav problem želite prijaviti?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "Nepoznat simptom" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "Simptom \"%s\" nije poznat." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." @@ -687,38 +688,38 @@ "Nakon zatvaranja ove poruke kliknite na prozor aplikacije za prijavu ovog " "problema." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "xprop nije uspio odrediti proces ID prozora" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "%prog " -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "Odredite naziv paketa." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "Dodajte dodatnu oznaku u izvještaj. Moguće je odrediti više puta." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" "%prog [mogućnosti] [simptom|pid|paket|program putanja|.apport/.crash " "datoteka]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " @@ -728,18 +729,18 @@ "ukratko samo --pid. Ako ni jedno nije navedeno, prikaži popis poznatih " "simptoma. (Podrazumijeva se ako je jedan argument zadan.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "Kliknite na prozor kao cilj za podnošenje izvještaja o problemu." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "Početak načina nadopune greške. Može se dodati po izboru --package." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" @@ -747,8 +748,8 @@ "Prijavi izvještaj greške o simptomu. (Podrazumijeva ako je naziv simptoma " "naveden kao jedini argument.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" @@ -756,8 +757,8 @@ "Navedite naziv paketa u --file-bug načinu. Ovo nije obavezno ako je --pid " "naveden. (Podrazumijeva se ako je naziv paketa naveden kao jedini argument.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " @@ -767,13 +768,13 @@ "greške će sadržavati više informacija. (Podrazumijeva se ako je pid naveden " "kao jedini argument.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "Zadani pid prekida aplikaciju." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " @@ -783,8 +784,8 @@ "nezavršenih u %s. (Podrazumijeva se ako je datoteka zadana kao jedini " "argument.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " @@ -794,45 +795,45 @@ "da je prijavite. Ta datoteka se zatim kasnije može prijaviti s drugog " "računala." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "Ispiši broj Apport inačice." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "" "To će pokrenuti apport-retrace u prozoru terminala zbog ispitivanja rušenja." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "Pokreni gdb sesiju" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "Pokreni gdb sesiju bez preuzimanja simbola otklanjanja greške" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "Nadopuni %s s potpunim simboličkim opširnim zapisom" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "" "Ovaj izvještaj problema se odnosi na program koji više nije instaliran." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " @@ -840,74 +841,74 @@ msgstr "" "Dogodio se problem s programom %s koji se promijenio otkada se srušio." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "Ovaj izvještaj o problemu je oštećen i ne može biti obrađen." #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "Izvještaj pripada paketu koji nije instaliran." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "Došlo je do greške pri pokušaju obrade izvještaja problema:" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "Ne može se odrediti paket ili naziv izvornog paketa." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "Nemoguće pokretanje Internet preglednika" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "Nemoguće pokretanje Internet preglednik za otvaranje %s." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "" "Upišite informacije vašeg korisničkog računa za %s sustav praćenja grešaka" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "Problem s mrežom" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" "Nemoguće povezivanje na bazu podataka rušenja. Provjerite vaš pristup " "Internetu." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "Nedostatak memorije" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "" "Vaš sustav nema dovoljno memorije za obradu ovog izvještaja o rušenju " "sustava." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -918,14 +919,14 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "Problem je već poznat" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " @@ -935,8 +936,8 @@ "internet pregledniku. Provjerite možete li dodati neke dodatne informacije " "koje mogu pomoći razvijateljima." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "Ovaj problem je već prijavljen razvijateljima. Hvala Vam!" --- apport-2.20.3.orig/po/hu.po +++ apport-2.20.3/po/hu.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:15+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:46+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: hu\n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "Apport" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr "Elnézést, belső hiba történt." -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "" "Ha további problémákat észlel, próbálja meg újraindítani a számítógépet." @@ -58,11 +58,11 @@ msgid "Ignore future problems of this program version" msgstr "Ezen programverzió további problémáinak figyelmen kívül hagyása" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "Részletek megjelenítése" @@ -70,21 +70,21 @@ msgid "_Examine locally" msgstr "_Vizsgálat helyileg" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "Bezárva hagyás" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "Folytatás" @@ -100,9 +100,10 @@ "Információk gyűjtése, amelyek segíthetik a fejlesztőket a jelentendő " "probléma megoldásában." +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "A hibával kapcsolatos információk feltöltése" @@ -110,8 +111,8 @@ msgid "Uploading problem information" msgstr "Hibainformációk feltöltése" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -123,103 +124,103 @@ msgid "Apport crash file" msgstr "Apport jelentésfájl" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "(bináris adatok)" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "Elnézést, a(z) %s alkalmazás váratlanul leállt." -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "Elnézést, a(z) %s váratlanul befejeződött." -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "Elnézést, a(z) %s belső hibát észlelt." -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "Elküldi a hibajelentést a feljesztőknek?" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "Küldés" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "Kényszerítve a bezárásra" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "Újraindítás" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "A(z) %s alkalmazás nem válaszol." -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "A(z) „%s” program nem válaszol." -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "Csomag: %s" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "Elnézést, hiba történt a szoftvertelepítés alatt." -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "A(z) %s alkalmazás belső hibát észlelt." -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "A(z) %s alkalmazás váratlanul befejeződött." -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "Ilyen típusú problémák figyelmen kívül hagyása a jövőben" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "Részletek elrejtése" @@ -232,24 +233,25 @@ msgid "Destination directory exists and is not empty." msgstr "A célkönyvtár létezik és nem üres." -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "Felhasználónév:" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "Jelszó:" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "Információgyűjtés a hibáról" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "Információgyűjtés a hibáról" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." @@ -257,7 +259,7 @@ "Az összegyűjtött információk elküldhetők a fejlesztőknek az alkalmazás " "javítása érdekében. Ez eltarthat néhány percig." -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "A hibával kapcsolatos információk feltöltése" @@ -282,13 +284,13 @@ "Please enter your password to access problem reports of system programs" msgstr "Adja meg jelszavát a rendszerprogramok hibáinak eléréséhez" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "Hiba jelentése…" -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "Hibás működés jelentése a fejlesztőknek" @@ -337,9 +339,8 @@ "detection" msgstr "A végrehajtható, amelynek a memóriaszivárgását figyeli a Valgrind" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "Extra csomag homokozóba telepítése (többször is megadható)" @@ -349,17 +350,17 @@ msgid "Error: %s is not an executable. Stopping." msgstr "Hiba: a(z) %s nem végrehajtható. Leállítás." -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "A rendszer instabillá válhatott, és szükség lehet az újraindítására." -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "" "Ne tegye be az új nyomkövetéseket a jelentésbe, hanem írja ki a szabványos " "kimenetre." -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" @@ -367,36 +368,36 @@ "Interaktív gdb munkamenet indítása a jelentés memóriakiíratásával (a -o " "figyelmen kívül marad, nem írja újra a jelentést)" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" "Módosított jelentés írása a megadott fájlba az eredeti jelentés módosítása " "helyett" -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "" "A veremkiíratás ismételt előállítása után a memóriakiíratás eltávolítása a " "jelentésből" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "A jelentés CoreFile-jának felülbírálása" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "A jelentés ExecutablePath-jának felülbírálása" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "A jelentés ProcMaps-jának felülbírálása" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "A jelentés csomaginformációinak újjáépítése" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -412,27 +413,27 @@ "„system” esetén a rendszer konfigurációs fájljait használja, de ekkor csak " "az aktuálisan futó kiadás összeomlásait lesz képes nyomon követni." -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" "Homokozóba történő telepítéskor a letöltés/telepítési folyamat kijelzése" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "Helyezzen időbélyegeket a naplóüzenetek elé, a kötegelt működéshez" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" "Külső tárolók létrehozása és használata a jelentésekben megadott forrásokból" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "Homokozóba letöltött csomagok gyorsítókönyvtára" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." @@ -440,7 +441,7 @@ "Kicsomagolt csomagok könyvtára. A jövőbeli futások feltételezik, hogy a már " "kicsomagolt csomagok ugyanebbe a homokozóba lesznek kicsomagolva." -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " @@ -451,7 +452,7 @@ "követett veremkiíratások feltöltésekor (ha a -g, -o és -s egyike sincs " "megadva)" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." @@ -459,28 +460,28 @@ "Ismételten nyomon követett veremkiíratások megjelenítése, és megerősítés " "kérése a beküldés előtt az összeomlási adatbázisba." -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" "Útvonal a kettőzött sqlite adatbázishoz (alapértelmezett: nincs ellenőrzés)" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "Nem használhatja a -C kapcsolót az -S kapcsoló nélkül. Leállítás." #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "Elküldhetők ezek mellékletként? [y/n]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "Úgy tűnik, ez a csomag nincs megfelelően telepítve" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " @@ -489,8 +490,8 @@ "Ez nem egy hivatalos %s csomag. Távolítson el minden harmadik féltől " "származó csomagot és próbálja újra." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -503,26 +504,26 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "ismeretlen program" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "Elnézést, a(z) „%s” program váratlanul összeomlott." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "Probléma a következőben: %s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." @@ -530,55 +531,55 @@ "A számítógépe nem rendelkezik elegendő szabad memóriával a probléma " "automatikus elemzéséhez és a jelentés elküldéséhez a fejlesztőknek." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "Érvénytelen hibajelentés" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "A hibajelentés elérése nem engedélyezett" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "Hiba" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "Nincs elegendő lemezterület a hiba feldolgozásához." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "Nincs megadva csomag" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "" "Meg kell adnia egy csomagot vagy PID azonosítót. További információkért " "tekintse meg a --help kapcsoló kimenetét." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "Hozzáférés megtagadva" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." @@ -586,44 +587,44 @@ "A megadott folyamat nem Önhöz tartozik. Ezt a programot a folyamat " "tulajdonosaként vagy rendszergazdaként futtassa." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "Érvénytelen PID" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "A megadott PID nem programhoz tartozik." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "A(z) %s tünetparancsfájl nem határozott meg érintett csomagot" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "A(z) %s csomag nem létezik" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "Nem készíthető jelentés" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "Hibajelentés frissítése" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -635,8 +636,8 @@ "\n" "Készítsen új jelentést az „apport-bug” használatával." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -657,30 +658,30 @@ "\n" "Biztosan folytatja?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "Nem került gyűjtésre további információ." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "Milyen problémát kíván jelenteni?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "Ismeretlen tünet" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "A(z) „%s” tünet ismeretlen." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." @@ -688,37 +689,37 @@ "Ezen üzenet bezárása után kattintson egy alkalmazásablakra az azzal " "kapcsolatos hiba jelentéséhez." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "Az xprop nem tudta meghatározni az ablak folyamatazonosítóját" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "%prog " -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "Adja meg a csomagnevet." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "Extra címke hozzáadása a jelentéshez. Többször is megadható." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" "%prog [kapcsolók] [tünet|pid|csomag|program elérési_út|.apport/.crash fájl]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " @@ -728,19 +729,19 @@ "egy --pid kapcsolót igényel. Ha egyik sincs megadva, az ismert tünetek " "listáját jeleníti meg. (Egy paraméter megadása is ezt jelenti.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "Kattintson egy ablakra az azzal kapcsolatos hiba jelentéséhez." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "" "Indítás hibafrissítés módban. Opcionálisan használható a --package kapcsoló." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" @@ -748,8 +749,8 @@ "Hiba bejelentése egy tünetről. (Ha az egyetlen paraméter tünetnév, az is ezt " "jelenti.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" @@ -757,8 +758,8 @@ "Csomagnév megadása --file-bug módban. Ez elhagyható, ha a --pid meg van " "adva. (Ha az egyetlen paraméter egy csomagnév, az is ezt jelenti.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " @@ -767,13 +768,13 @@ "Futó program megadása --file-bug módban. Ha ez meg van adva, a hibajelentés " "több információt fog tartalmazni." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "A megadott PID egy nem válaszoló alkalmazásra mutat." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " @@ -783,8 +784,8 @@ "függőben lévők helyet. (Ha az egyetlen paraméter egy fájl, az is ezt " "jelenti.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " @@ -793,47 +794,47 @@ "Hibajelentő módban az összegyűjtött információk mentése fájlba a bejelentés " "helyett. Ez a fájl később másik gépről beküldhető." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "Az Apport verziószámának megjelenítése." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "" "Ez meg fogja nyitni az apport-retrace-t egy terminálban, hogy az " "megvizsgálja az összeomlást." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "gdb folyamat futtatása" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "gdb folyamat futtatása a hibakeresési szimbólumok letöltése nélkül" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "%s frissítése teljes szimbolikus veremkiíratással" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "" "Ez a problémajelentés egy olyan programra vonatkozik, amely már nincs " "telepítve." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " @@ -841,73 +842,73 @@ msgstr "" "A hiba a(z) „%s” programmal lépett fel, amely megváltozott az összeomlás óta." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "A hibajelentés megsérült és nem dolgozható fel." #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "A jelentés egy nem telepített csomaghoz tartozik." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "Hiba történt a következő hibabejelentés feldolgozása közben:" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "A csomag vagy forrás neve nem állapítható meg." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "A webböngésző nem indítható." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "A(z) „%s” megnyitásához nem lehet elindítani a webböngészőt." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "Adja meg fiókadatait a(z) %s hibakövető rendszerhez" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "Hálózati probléma" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" "Nem lehet kapcsolódni az összeomlás-adatbázishoz, ellenőrizze az " "internetkapcsolatát." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "Elfogyott a memória" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "" "A rendszere nem rendelkezik elegendő memóriával ezen összeomlásjelentés " "feldolgozásához." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -918,14 +919,14 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "A probléma már ismert." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " @@ -935,8 +936,8 @@ "hibajelentés. Ellenőrizze, hogy tud-e további információkkal szolgálni, " "amelyek hasznosak lehetnek a fejlesztők számára." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "Ez a probléma már jelentve volt a fejlesztőknek. Köszönjük!" --- apport-2.20.3.orig/po/hy.po +++ apport-2.20.3/po/hy.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:14+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:45+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: hy\n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr "" -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "" @@ -57,11 +57,11 @@ msgid "Ignore future problems of this program version" msgstr "" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "" @@ -69,21 +69,21 @@ msgid "_Examine locally" msgstr "" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "" @@ -97,9 +97,10 @@ "you report." msgstr "" +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "" @@ -107,8 +108,8 @@ msgid "Uploading problem information" msgstr "" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -118,103 +119,103 @@ msgid "Apport crash file" msgstr "" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "" -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "" -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "" -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "" -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "" -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "" -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "" -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "" -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "" @@ -227,30 +228,31 @@ msgid "Destination directory exists and is not empty." msgstr "" -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." msgstr "" -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "" @@ -273,13 +275,13 @@ "Please enter your password to access problem reports of system programs" msgstr "" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "" -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "" @@ -320,9 +322,8 @@ "detection" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "" @@ -332,46 +333,46 @@ msgid "Error: %s is not an executable. Stopping." msgstr "" -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -381,72 +382,72 @@ "be able to retrace crashes that happened on the currently running release." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " "neither -g, -o, nor -s are specified)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "" #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " "and try again." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -455,121 +456,121 @@ "%s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -577,8 +578,8 @@ "Please create a new report using \"apport-bug\"." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -590,230 +591,230 @@ "Do you really want to proceed?" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " "a single argument is given.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " "ones in %s. (Implied if file is given as only argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " "machine." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " "occurred." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "" #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -821,22 +822,22 @@ "%s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " "helpful for the developers." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "" --- apport-2.20.3.orig/po/ia.po +++ apport-2.20.3/po/ia.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:15+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:46+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: ia\n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr "" -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "" @@ -57,11 +57,11 @@ msgid "Ignore future problems of this program version" msgstr "" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "" @@ -69,21 +69,21 @@ msgid "_Examine locally" msgstr "" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "" @@ -97,9 +97,10 @@ "you report." msgstr "" +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "" @@ -107,8 +108,8 @@ msgid "Uploading problem information" msgstr "" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -118,103 +119,103 @@ msgid "Apport crash file" msgstr "" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "" -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "" -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "" -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "" -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "" -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "" -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "" -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "" -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "" @@ -227,30 +228,31 @@ msgid "Destination directory exists and is not empty." msgstr "" -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." msgstr "" -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "" @@ -273,13 +275,13 @@ "Please enter your password to access problem reports of system programs" msgstr "" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "" -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "" @@ -320,9 +322,8 @@ "detection" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "" @@ -332,46 +333,46 @@ msgid "Error: %s is not an executable. Stopping." msgstr "" -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -381,72 +382,72 @@ "be able to retrace crashes that happened on the currently running release." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " "neither -g, -o, nor -s are specified)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "" #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " "and try again." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -455,121 +456,121 @@ "%s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -577,8 +578,8 @@ "Please create a new report using \"apport-bug\"." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -590,230 +591,230 @@ "Do you really want to proceed?" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " "a single argument is given.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " "ones in %s. (Implied if file is given as only argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " "machine." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " "occurred." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "" #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -821,22 +822,22 @@ "%s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " "helpful for the developers." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "" --- apport-2.20.3.orig/po/id.po +++ apport-2.20.3/po/id.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:15+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:46+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: id\n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "Apport" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr "Maaf, terjadi kesalahan internal." -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "" "Bila Anda menemui masalah lebih lanjut, cobalah memulai ulang komputer." @@ -58,11 +58,11 @@ msgid "Ignore future problems of this program version" msgstr "Abaikan masalah atas versi program ini di masa mendatang" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "Tunjukkan Rincian" @@ -70,21 +70,21 @@ msgid "_Examine locally" msgstr "P_eriksa secara lokal" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "Biarkan Tertutup" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "Lanjutkan" @@ -100,9 +100,10 @@ "Informasi yang dikumpulkan akan dapat membantu para pengembang untuk " "memperbaiki masalah yang Anda laporkan." +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "Mengunggah informasi masalah" @@ -110,8 +111,8 @@ msgid "Uploading problem information" msgstr "Unggah informasi masalah" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -123,103 +124,103 @@ msgid "Apport crash file" msgstr "Berkas crash Apport" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "(data biner)" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "Maaf, aplikasi %s telah berhenti secara tak terduga." -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "Maaf, %s telah tertutup secara tak terduga." -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "Maaf, %s telah mengalami galat internal." -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "Kirim laporan masalah ke para pengembang?" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "Kirim" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "Paksakan Ditutup" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "Luncurkan Ulang" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "Aplikasi %s telah berhenti merespon." -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "Program \"%s\" telah berhenti merespon." -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "Paket: %s" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "Maaf, terjadi masalah ketika memasang perangkat lunak." -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "Aplikasi %s telah mengalami galat internal." -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "Aplikasi %s telah tertutup tanpa diharapkan." -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "Abaikan masalah tipe ini di masa mendatang" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "Sembunyikan Rincian" @@ -232,24 +233,25 @@ msgid "Destination directory exists and is not empty." msgstr "Direktori tujuan ada dan tak kosong." -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "Nama pengguna:" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "Sandi:" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "Mengumpulkan Informasi Masalah" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "Mengumpukan informasi masalah" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." @@ -257,7 +259,7 @@ "Informasi yang dikumpulkan dapat dikirim ke para pengembang untuk " "meningkatkan aplikasi. Ini mungkin perlu waktu beberapa menit." -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "Mengunggah Informasi Masalah" @@ -282,13 +284,13 @@ msgstr "" "Harap masukkan sandi Anda untuk mengakses laporan masalah dari program sistem" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "Laporkan masalah..." -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "Lapor kegagalan kepada pengembang" @@ -338,9 +340,8 @@ "executable yang dijalankan di bawah perkakas memcheck valgrind untuk deteksi " "kebocoran memori" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "" @@ -352,18 +353,18 @@ msgid "Error: %s is not an executable. Stopping." msgstr "Galat: %s bukan executable. Menghentikan." -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "" "Sistem Anda mungkin menjadi tak stabil sekarang dan mungkin perlu distart " "ulang." -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "" "Jangan letakkan pelacakan baru ke dalam laporan, tapi tulis mereka ke stdout." -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" @@ -371,34 +372,34 @@ "Mulai sesi gdb interaktif dengan core dump dari laporan (-o diabaikan; tidak " "menulis laporan)" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" "Tulis laporan yang diubah ke berkas yang diberikan alih-alih mengubah " "laporan asli" -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "Buang core dump dari laporan setelah regenerasi stack trace" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "Timpa CoreFile laporan" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "Timpa ExecutablePath laporan" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "Timpa ProcMaps laporan" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "Bangun ulang informasi Package laporan" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -415,29 +416,29 @@ "hanya akan dapat melacak ulang crash yang terjadi pada rilis yang kini " "sedang berjalan." -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" "Laporkan kemajuan pengunduhan/pemasangan ketika memasang paket ke dalam " "kotak pasir" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "Awali pesan log dengan penanda waktu, bagi operasi batch" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" "Buat dan pakai repositori pihak ketiga dari sumber yang dinyatakan dalam " "laporan" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "Direktori singgahan bagi paket yang diunduh dalam kotak pasir" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." @@ -446,7 +447,7 @@ "akan menganggap bahwa paket yang telah diunduh juga diekstrak ke kotak pasir " "ini." -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " @@ -456,7 +457,7 @@ "ketika menyatakan ID crash untuk mengunggah jejak stack yang dilacak ulang " "(hanya bila -g, -o, maupun -s tak dinyatakan)" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." @@ -464,27 +465,27 @@ "Tampilkan jejak stack yang dilacak ulang dan tanyakan persetujuan sebelum " "mengirim mereka ke basis data crash." -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "Path ke basis data sqlite duplikat (baku: tak ada uji duplikasi)" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "Anda tidak bisa menggunakan -C tanpa -S. Sedang menghentikan." #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "Ok untuk mengirim lampiran-lampiran ini? [y/t]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "Paket ini nampaknya tak terpasang secara benar" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " @@ -493,8 +494,8 @@ "Ini bukan paket %s resmi. Harap hapus sebarang paket pihak ketiga dan coba " "lagi." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -507,26 +508,26 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "program tak dikenal" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "Maaf, program \"%s\" ditutup tak disangka-sangka" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "Masalah di %s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." @@ -534,55 +535,55 @@ "Komputer anda sepertinya tidak memiliki cukup memori bebas untuk secara " "otomatis menganalisa masalah dan mengirimkan laporan pada pengembang." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "Laporan masalah tidak valid" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "Anda tak diijinkan untuk mengakses laporan masalah ini." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "Galat" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "Tak tersedia ruang cakram yang cukup untuk mengolah laporan ini." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "Tak ada paket yang dinyatakan" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "" "Anda perlu menyatakan suatu paket atau sebuah PID. Lihat --help untuk " "informasi lebih." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "Tak diijinkan" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." @@ -590,44 +591,44 @@ "Proses berikut tidak dimiliki oleh Anda. Silakan jalankan program ini dengan " "mengunakan root atau pemilik proses." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "PID tak valid" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "ID proses yang dinyatakan bukan milik suatu program." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "Skrip gejala %s tak menentukan paket yang terpengaruh" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "Paket %s tidak ada" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "Tidak dapat membuat laporan" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "Sedang memperbarui laporan masalah" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -639,8 +640,8 @@ "\n" "Silakan membuat suatu laporan baru memakai \"apport-bug\"." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -661,30 +662,30 @@ "\n" "Apakah Anda yakin ingin meneruskan?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "Tidak ada informasi tambahan yang dikumpulkan" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "Masalah macam apa yang ingin Anda laporkan?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "Gejala tak dikenal" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "Gejala '%s' tak dikenal." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." @@ -692,38 +693,38 @@ "Setelah menutup pesan ini silakan klik pada jendela aplikasi untuk " "melaporkan masalah tentang hal ini." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "xprop gagal untuk menentukan ID proses dari jendela" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "%prog " -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "Tentukan nama paket." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "" "Tambahkan label tambahan untuk laporan. Dapat memasukkan beberapa label " "sekaligus." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "%prog [opsi] [gejala|pid|paket|path program|berkas .apport/.crash]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " @@ -733,18 +734,18 @@ "atau hanya --pid. Bila keduanya tak diberikan, tampilkan daftar dari gejala " "yang telah diketahui. (Otomatis bila argumen tunggal diberikan.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "Klik jendela sebagai target untuk mengajukan laporan masalah." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "Memulai mode memperbarui bug. Dapat mengambil optional --package." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" @@ -752,8 +753,8 @@ "Laporkan kutu tentang suatu gejala. (Otomatis bila nama gejala diberikan " "sebagai argumen tunggal.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" @@ -761,8 +762,8 @@ "Nyatakan nama paket dalam moda --file-bug. Ini opsional bila suatu --pid " "dinyatakan. (Otomatis bila nama paket diberikan sebagai argumen tunggal.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " @@ -772,13 +773,13 @@ "dinyatakan, laporan kutu akan memuat lebih banyak informasi. (diasumsikan " "bila pid diberikan sebagai satu-satunya argumen.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "Pid yang diberikan adalah aplikasi yang hang." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " @@ -787,8 +788,8 @@ "Laporkan crash dari berkas .apport atau .crash alih-alih dari yang tertunda " "di %s. (Otomatis bila berkas diberikan sebagai argumen tunggal.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " @@ -798,46 +799,46 @@ "berkas alih-alih melaporkannya. Berkas ini kemudian dapat dilaporkan nanti " "atau dari mesin lain." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "Cetak nomor versi Apport." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "" "Ini akan meluncurkan apport-retrace dalam suatu jendela terminal untuk " "memeriksa crash." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "Memulai sesi gdb" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "Memulai sesi gdb tanpa mengunduh simbol debug" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "Mutakhirkan %s dengan pelacakan stack simbol lengkap" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "" "Laporan masalah berlaku bagi suatu program yang telah tak terpasang lagi." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " @@ -845,73 +846,73 @@ msgstr "" "Terjadi masalah dengan program %s yang berubah semenjak terjadinya crash." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "Laporan permasalah gagal dan tidak dapat diproses." #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "Laporan ini milik paket yang tidak dipasang." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "Terjadi kesalahan ketika mencoba untuk memproses laporan masalah:" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "TIdak dapat menentukan nama paket atau nama paket sumber." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "TIdak dapat menjalankan perambah web" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "TIdak dapat menjalankan perambah web untuk membuka %s." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "Silakan masukkan informasi akun Anda bagi sistem pelacakan kutu %s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "Masalah di jaringan" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" "Tak bisa menyambung ke basis data crash, silakan periksa sambungan Internet " "Anda." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "Kehabisan memori" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "" "Sistem Anda tidak memiliki memori yang cukup untuk memproses laporan crash " "ini." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -922,14 +923,14 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "Masalah sudah diketahui" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " @@ -939,8 +940,8 @@ "web. Silakan periksa apakah Anda dapat menambah informasi lebih lanjut yang " "mungkin berguna bagi para pengembang." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "Masalah ini sudah dilaporkan ke pengembang. Terima kasih!" --- apport-2.20.3.orig/po/is.po +++ apport-2.20.3/po/is.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:15+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:46+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: is\n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "Apport" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr "Því miður, upp kom innri villa." -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "" "Ef þú verður var við fleiri vandamál, reyndu þá að endurræsa tölvuna." @@ -58,11 +58,11 @@ msgid "Ignore future problems of this program version" msgstr "Hunsa frekari vandamál í þessarri útgáfu forrits" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "Sýna ítarlegri upplýsingar" @@ -70,21 +70,21 @@ msgid "_Examine locally" msgstr "Skoða _hér" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "Skilja eftir lokað" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "Halda áfram" @@ -100,9 +100,10 @@ "Er að safna upplýsingum sem gætu hjálpað forriturum að laga vandann sem þú " "tilkynnir" +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "Sendi vandamálsskýrslu" @@ -110,8 +111,8 @@ msgid "Uploading problem information" msgstr "Sendi vandamálsskýrslu" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -122,103 +123,103 @@ msgid "Apport crash file" msgstr "Apport villuskrá" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "(gögn í tvíundakerfi)" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "Því miður, forritið %s hætti óvænt." -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "Því miður, forritið %s lokaði óvænt." -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "Því miður, %s hefur lent í innri villu." -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "Senda vandamálsskýrslu til forritara?" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "Senda" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "Þvinga til að loka" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "Keyra aftur upp" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "Forritið %s hætti að svara." -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "Forritið %s hætti að svara." -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "Pakki: %s" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "Því miður, vandamál kom upp við upppsetningu hugbúnaðar." -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "Forritið %s lenti í innri villu." -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "Forritið %s lokaði óvænt." -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "Hunsa svona vandamál héðan í frá" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "Fela nánari upplýsingar" @@ -231,24 +232,25 @@ msgid "Destination directory exists and is not empty." msgstr "" -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "Notandanafn:" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "Lykilorð:" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "Safna saman upplýsingum um vandamál" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "Safna saman upplýsingum um vandamál" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." @@ -256,7 +258,7 @@ "Söfnuðum upplýsingum er hægt að koma til forritaranna til að bæta forritið. " "Þetta gæti tekið nokkrar mínútur." -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "Sendi upplýsingar um vandamálið" @@ -281,13 +283,13 @@ "Please enter your password to access problem reports of system programs" msgstr "Sláðu inn lykilorð til að fá aðgang að villuskýrslum kerfisforrita" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "Tilkynna vandamál..." -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "Tilkynna bilun til forritara" @@ -334,9 +336,8 @@ "detection" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "" @@ -346,47 +347,47 @@ msgid "Error: %s is not an executable. Stopping." msgstr "Villa: %s er ekki keyranlegt forrit. Hætti." -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "" "Kerfið þitt verður kannski óstöðugt núna og þarf hugsanlega að endurræsa það." -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -396,72 +397,72 @@ "be able to retrace crashes that happened on the currently running release." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " "neither -g, -o, nor -s are specified)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "Þú getur ekki notað -C án -S. Hætti." #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "Er allt í lagi að senda þetta sem sem viðhengi? [y/n]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "Þessi pakki virðist ekki rétt upp settur" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " "and try again." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -474,26 +475,26 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "óþekkt forrit" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "Fyrirgefðu, forritið \"%s\" hætti óvænt" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "Vandamál í %s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." @@ -501,54 +502,54 @@ "Tölvan þín hefur ekki nóg laust innra minni til að greina sjálfkrafa " "vandamálið og senda til forritaranna." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "Ógild vandamálsskýrsla" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "Þú hefur ekki leyfi til að skoða þessa skýrslu." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "Villa" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "Það er ekki nóg diskpláss til að vinna úr skýrslunni." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "Enginn pakki valinn" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "" "Þú þarft að tilgreina pakka eða PID. Sjá --help fyrir meiri upplýsingar." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "Aðgangur bannaður" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." @@ -556,44 +557,44 @@ "Tiltekið ferli tilheyrir þér ekki. Keyrðu þetta forrit sem eigandi ferlisins " "eða sem kerfisstjórnandi" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "Ógilt PID" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "Þetta ID tilheyrir ekki neinu forriti." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "Pakki %s er ekki til" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "Uppfæri villuskýrslu" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -605,8 +606,8 @@ "\n" "Búðu til nýja skýrslu með ‚apport-bug‘." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -626,30 +627,30 @@ "\n" "Ertu alveg viss þú viljir halda áfram?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "Hvers konar forrit viltu senda skýrslu um?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "Óþekkt einkenni" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "Einkennið „%s“ er ekki þekkt." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." @@ -657,133 +658,133 @@ "Eftir lokun þessa skilaboða, smelltu á forritsglugga til að skrá villu um " "hann." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "Tilgreindu pakkaheiti." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " "a single argument is given.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "Gefna PID-ið er forrit sem hangir." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " "ones in %s. (Implied if file is given as only argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " "machine." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "Gefa Apport útgáfunúmerið." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "Þessi vandamálaskýrsla á við forrit sem er ekki uppsett lengur." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " @@ -791,70 +792,70 @@ msgstr "" "Vandamálið kom fyrir í forritunu %s sem er breytt síðan síðasta hrun varð." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "Skýrslan er löskuð og ég get ekki unnið úr henni" #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "Þessi skýrsla tilheyrir pakka sem ekki er uppsettur" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "Villa kom upp þegar reynt var að vinna þessa villuskýrslu:" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "Gat ekki ákveðið nafn pakka eða grunnpakka" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "Gat ekki ræst vefvafra" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "Gat ekki ræst vefvafra til að opna %s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "Sláðu inn aðgangsupplýsingar þínar fyrir %s villukerfið." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "Vandamál með nettengingu" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "Get ekki tengst við gagnagrunn, athugaðu nettenginguna." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "Minnisvandamál" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "" "Kerfið þitt hefur ekki nóg vinnsluminni til að vinna úr þessari skýrslu." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -865,14 +866,14 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "Vandamál þegar þekkt" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " @@ -882,8 +883,8 @@ "vefvafranum. Athugaðu hvort þú getur bætt við einhverjum gagnlegum " "upplýsingum." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "" "Þetta vandamál hefur nú þegar verið tilkynnt til þróunarteymis. Takk fyrir!" --- apport-2.20.3.orig/po/it.po +++ apport-2.20.3/po/it.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:15+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:46+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: it\n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "Apport" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr "Si è verificato un errore interno." -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "Se vengono riscontrati ulteriori problemi, riavviare il computer." @@ -57,11 +57,11 @@ msgid "Ignore future problems of this program version" msgstr "Ignorare futuri problemi di questa versione del programma" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "Mostra dettagli" @@ -69,21 +69,21 @@ msgid "_Examine locally" msgstr "_Esamina localmente" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "Lascia chiuso" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "Continua" @@ -99,9 +99,10 @@ "È in corso la raccolta di informazioni che potrebbero aiutare gli " "sviluppatori a correggere il problema segnalato." +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "Invio informazioni sul problema" @@ -109,8 +110,8 @@ msgid "Uploading problem information" msgstr "Invio informazioni sul problema" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -122,103 +123,103 @@ msgid "Apport crash file" msgstr "File crash di Apport" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "(dati binari)" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "L'applicazione %s si è chiusa inaspettatamente." -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "«%s» si è chiuso inaspettatamente." -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "«%s» ha riscontrato un errore interno." -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "Inviare la segnalazione del problema agli sviluppatori?" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "Invia" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "Forza chiusura" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "Rilancia" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "L'applicazione %s non risponde più." -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "L'applicazione «%s» non risponde più." -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "Pacchetto: %s" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "Si è verificato un problema durante l'installazione del software." -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "L'applicazione %s ha riportato un errore interno." -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "L'applicazione «%s» si è chiusa inaspettatamente." -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "Ignorare futuri problemi di questo tipo" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "Nascondi dettagli" @@ -231,24 +232,25 @@ msgid "Destination directory exists and is not empty." msgstr "La directory di destinazione esiste e non è vuota." -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "Nome utente:" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "Password:" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "Raccolta informazioni sul problema" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "Raccolta informazioni sul problema" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." @@ -256,7 +258,7 @@ "Le informazioni raccolte possono essere inviate agli sviluppatori per " "migliorare l'applicazione. Potrebbe richiedere alcuni minuti." -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "Invio informazioni sul problema" @@ -283,13 +285,13 @@ "Inserire la propria password per accedere alle segnalazioni d'errore di " "programmi di sistema" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "Segnala un problema..." -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "Segnala un malfunzionamento agli sviluppatori" @@ -338,9 +340,8 @@ "detection" msgstr "L'eseguibile lanciato in valgring per determinare perdite di memoria" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "" @@ -352,18 +353,18 @@ msgid "Error: %s is not an executable. Stopping." msgstr "Errore: %s non è eseguibile. Arresto." -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "" "Il sistema potrebbe diventare instabile e potrebbe essere necessario " "riavviarlo." -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "" "Non inserisce i nuovi trace nella segnalazione, ma li scrive sullo stdout." -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" @@ -371,36 +372,36 @@ "Avvia un sessione interattiva di gdb con il core dump della segnalazione (-o " "è ignorato; non scrive la segnalazione)" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" "Scrive la segnalazione modificata nel file indicato, invece di modificare la " "segnalazione originale" -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "" "Elimina il core dump dalla segnalazione dopo la generazione dello stack " "trace." -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "Sovrascrive il CoreFile della segnalazione" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "Sovrascrive l'ExecutablePath della segnalazione" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "Sovrascrive la ProcMap della segnalazione" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "Rigenera le informazioni sul Package della segnalazione" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -417,28 +418,28 @@ "possibile eseguire il retrace dei crash avvenuti all'interno della release " "attualmente in esecuzione." -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" "Segnala avanzamento di scaricamento/installazione durante l'installazione di " "pacchetti nella sandbox" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "Anteporre gli orari ai messaggi di log nelle operazioni batch" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" "Crea e usa repository di terze parti dalle sorgenti specificate nei rapporti" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "Directory cache per i pacchetti scaricati nella sandbox" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." @@ -446,7 +447,7 @@ "Directory per i pacchetti estratti; una successiva esecuzione assumerà che i " "pacchetti già scaricati siano stati estratti in questa sandbox." -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " @@ -457,7 +458,7 @@ "trace a cui è stato eseguito un retrace (solo se non è specificato alcuno di " "-g, -o e -s)" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." @@ -465,29 +466,29 @@ "Visualizza gli stack trace a cui è stato eseguito un retrace e chiede " "conferma prima di inviarli al database dei crash." -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" "Percorso al duplicato del database sqlite (predefinito: nessun controllo sul " "duplicato)" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "Impossibile usare -C senza -S. Arresto." #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "OK per inviare questi come allegati? [y/n]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "Questo pacchetto non sembra installato correttamente" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " @@ -496,8 +497,8 @@ "Questo non è un pacchetto ufficiale di %s. Rimuovere tutti i pacchetti di " "terze parti, quindi riprovare." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -511,26 +512,26 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "programma sconosciuto" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "Chiusura inattesa del programma «%s»" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "Problema in %s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." @@ -538,56 +539,56 @@ "Nel computer non è presente abbastanza memoria libera per analizzare " "automaticamente il problema e inviare una segnalazione agli sviluppatori." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "Segnalazione di problema non valida" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "Accesso non consentito alla segnalazione riguardo questo problema." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "Errore" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "" "Non c'è spazio sufficiente sul disco per elaborare questa segnalazione." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "Nessun pacchetto specificato" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "" "È necessario specificare un pacchetto o un PID. Per maggiori informazioni " "consultare --help." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "Permesso negato" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." @@ -595,46 +596,46 @@ "Il processo specificato non appartiene all'utente corrente. Eseguire questo " "programma come il proprietario del processo o come root." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "PID non valido" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "L'identificatore di processo specificato non appartiene al programma" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "" "Lo script per l'analisi delle anomalie %s non ha rilevato alcun pacchetto " "alterato" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "Il pacchetto %s non esiste" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "Impossibile creare la segnalazione" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "Aggiornamento segnalazione del problema" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -646,8 +647,8 @@ "\n" "Creare una nuova segnalazione utilizzando «apport-bug»." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -667,30 +668,30 @@ "\n" "Procedere?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "Non è stata raccolta alcuna informazione aggiuntiva." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "Che tipo di problema segnalare?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "Anomalia sconosciuta" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "L'anomalia «%s» è sconosciuta." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." @@ -698,41 +699,41 @@ "Dopo aver chiuso questo messaggio, fare clic sulla finestra di " "un'applicazione per segnalarne un problema." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "" "Recupero dell'identificativo del processo della finestra da parte di xprop " "non riuscito" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "%prog " -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "Specificare il nome del pacchetto." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "" "Aggiunge un'etichetta alla segnalazione, può essere specificata più volte" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" "%prog [opzioni] [anomalia|pid|pacchetto|percorso programma|file " ".apport/.crash]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " @@ -742,19 +743,19 @@ " oppure solo --pid: se non è indicato alcuno dei due, sarà visualizzato un " "elenco di anomalie (implicito se è indicato un singolo argomento)." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "Fare clic su una finestra per completare i campi della segnalazione." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "" "Avvia in modalità aggiornamento bug: è possibile usare l'opzione --package" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" @@ -762,8 +763,8 @@ "Invia una segnalazione di bug riguardo un'anomalia (implicito se è indicato " "il nome di un'anomalia come unico argomento)." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" @@ -772,8 +773,8 @@ "stato specificato (implicito se il nome del pacchetto è indicato come unico " "argomento)." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " @@ -783,13 +784,13 @@ "specificato, la segnalazione conterrà maggiori informazioni (implicito se il " "PID è passato come argomento)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "Il PID fornito è un'applicazione in attesa." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " @@ -798,8 +799,8 @@ "Segnala il crash da un file .apport o .crash fornito, piuttosto che da " "quelli in attesa in %s (implicito se file è indicato come unico argomento)." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " @@ -809,46 +810,46 @@ "invece di inviare la segnalazione; il file può poi essere inviato " "successivamente da un computer differente" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "Mostra il numero di versione del programma." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "" "Questo eseguirà apport-retrace in una finestra di terminale per esaminare il " "crash." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "Esegui una sessione gdb" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "Esegui una sessione gdb senza scaricare i simboli di debug" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "Aggiornare %s con uno stack trace completamente simbolico" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "" "La segnalazione del problema riguarda un programma che non è più installato." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " @@ -857,77 +858,77 @@ "Il problema si è verificato con il programma «%s», che risulta essere stato " "modificato rispetto al momento in cui si è verificato il crash." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "" "Questa segnalazione di problema è danneggiata e non può essere elaborata." #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "La segnalazione fa riferimento a un pacchetto che non è installato." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "" "Si è verificato un errore nel tentativo di elaborare questa segnalazione:" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "" "Impossibile determinare il nome del pacchetto o del pacchetto sorgente." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "Impossibile avviare il browser web" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "Impossibile avviare il browser web per aprire %s." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "" "Inserire i dati del proprio account per il sistema di tracciamento dei bug %s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "Problema di rete" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" "Impossibile connettersi al database dei crash, controllare la connessione " "Internet." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "Memoria esaurita" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "" "Il sistema non ha abbastanza memoria per elaborare questa segnalazione di " "crash." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -938,14 +939,14 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "Problema già noto" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " @@ -955,8 +956,8 @@ "mostrato nel browser web. Verificare se è possibile aggiungere ulteriori " "informazioni che potrebbero essere utili agli sviluppatori." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "Il problema è già stato segnalato agli sviluppatori. Grazie." --- apport-2.20.3.orig/po/ja.po +++ apport-2.20.3/po/ja.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:15+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:46+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: ja\n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr "残念ながら、内部エラーが発生しました。" -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "さらに問題が発生する場合は、コンピューターを再起動してみてください。" @@ -57,11 +57,11 @@ msgid "Ignore future problems of this program version" msgstr "今後このバージョンのプログラムの問題を無視する" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "詳細を表示" @@ -69,21 +69,21 @@ msgid "_Examine locally" msgstr "ローカルで解析する(_E)" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "閉じて終了する" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "続行" @@ -97,9 +97,10 @@ "you report." msgstr "あなたの報告する不具合を、開発者が修正するのに役立つように情報を収集します。" +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "問題の情報をアップロードしています" @@ -107,8 +108,8 @@ msgid "Uploading problem information" msgstr "問題の情報をアップロードしています" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -118,103 +119,103 @@ msgid "Apport crash file" msgstr "" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "(バイナリデータ)" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "残念ながら、アプリケーション%sが予期せず停止しました。" -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "残念ながら、%s は予期せず終了しました。" -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "残念ながら、%s で内部エラーが発生しました。" -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "問題のレポートを開発者に送信しますか?" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "送信" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "強制終了" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "再起動する" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "アプリケーション %s は応答していません。" -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "プログラム \"%s\" は応答していません。" -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "パッケージ: %s" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "残念ながら、ソフトウェアのインストール中に問題が発生しました。" -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "アプリケーション %s は内部エラーに遭遇しました。" -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "アプリケーション %s が突然終了しました。" -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "今後、この種類の問題は無視する" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "詳細を隠す" @@ -227,30 +228,31 @@ msgid "Destination directory exists and is not empty." msgstr "" -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "問題の情報を集めています" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "問題の情報を集めています" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." msgstr "" -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "問題の情報をアップロードしています" @@ -273,13 +275,13 @@ "Please enter your password to access problem reports of system programs" msgstr "システムプログラムの問題レポートにアクセスするにはパスワードを入力してください" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "問題を報告する..." -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "開発者に異常動作を報告してください" @@ -320,9 +322,8 @@ "detection" msgstr "メモリリーク検出のためvalgrindのメモリチェックツールにより実行されているプログラム" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "サンドボックスに追加のパッケージをインストールする (複数回指定可)" @@ -332,46 +333,46 @@ msgid "Error: %s is not an executable. Stopping." msgstr "エラー: %s は実行ファイルではありません。中止します。" -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "システムが不安定になる可能性があるので、再起動する必要があるかもしれません。" -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "これ以上レポートに新しいトレースを書き込まないが、標準出力には表示する。" -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "オリジナルのレポートを変更せずに、指定されたファイルに変更後のレポートを書き込む" -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "レポートのコアファイルを上書きする" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -385,73 +386,73 @@ "ィレクトリを指定します。「system」を指定した場合にはシステムの設定ファイルを利用しますが、その場合には現在実行中のリリースで発生したクラッシュしかリ" "トレースできません。" -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "サンドボックスにパッケージをインストールする際に、ダウンロードおよびインストールの進捗状況を表示する" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "ログメッセージの先頭にタイムスタンプを挿入する (バッチ処理用)" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "レポートで指定された提供元から、サードパーティーのリポジトリを作成して使用します。" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "サンドボックスにダウンロードされたパッケージのためのキャッシュディレクトリ" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." msgstr "" "展開したパッケージのためのディレクトリ。これ以降はダウンロード済みのパッケージはすべてこのサンドボックスに展開されているものと仮定します。" -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " "neither -g, -o, nor -s are specified)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "-S を指定せずに -C を使用することはできません。中止します。" #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "このパッケージは恐らく正常にインストールされていません" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " "and try again." msgstr "これは %s の公式パッケージではありません。すべてのサードパーティーのパッケージを削除して再度試してください。" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -463,121 +464,121 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "不明なプログラム" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "残念ながら、プログラム \"%s\" が不意に終了しました" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "%s に問題があります" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." msgstr "コンピューターに、問題を自動的に解析して開発者にレポートを送るための十分な空きメモリーがありません。" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "無効な問題のレポートです" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "この問題を報告するための権限がありません。" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "エラー" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "このレポートを作成するための空きスペースがディスクにありません。" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "パッケージが特定できません" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "パッケージまたはプロセスIDを特定する必要があります。詳しくは--helpを見てください。" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "許可がありません" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." msgstr "このプロセスを操作する権限がありません。プロセスの所有者か、もしくはrootユーザとして実行してください。" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "無効なプロセスID" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "指定されたプロセスIDはプログラムに属していません。" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "パッケージ %s は存在しません" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -585,8 +586,8 @@ "Please create a new report using \"apport-bug\"." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -604,66 +605,66 @@ "\n" "本当に進めますか?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "収集する追加情報はありません。" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "どのような種類の問題を報告しますか?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "未知のふるまい" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "ふるまい \"%s\" は知られていません。" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "xprop はウィンドウのプロセス ID を特定できませんでした" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "%prog " -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "パッケージ名を指定" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "レポートに追加タグを追加します。複数回指定できます。" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " @@ -672,25 +673,25 @@ "バグファイリングモードを開始します。実行には --package と追加の --pid を用いるか、あるいはただ --pid " "だけとするオプションが必要です。どちらも与えられていないときには、既知の現象のリストを表示します(暗黙の一つの引数が与えられた場合)。" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "問題レポートを埋めるには、ターゲットとなるウィンドウをクリックしてください。" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "バグ更新モードを開始します。オプション --package が使用できます。" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" msgstr "SYMPTOM(症状)についてのバグを報告します(唯一の引数は症状の名前を意味します)。" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" @@ -698,8 +699,8 @@ "--file-bugモードで使用するパッケージ名を指定します。--" "pidが指定されている場合はオプション扱いになります(唯一の引数はパッケージ名を意味します)。" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " @@ -709,13 +710,13 @@ "bugモードの対象になる実行中のプログラムを指定します。このオプションを指定した場合、バグ報告にはより多くの情報が含まれます(唯一の引数はプロセスIDを意" "味します)。" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "指定されたpidはハングアップしたアプリケーションのものです。" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " @@ -723,8 +724,8 @@ msgstr "" "クラッシュの報告を %s で保留中のプログラムのかわりに .apport または .crash ファイルで行う(ファイル名が引数のみで与えられた場合)。" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " @@ -732,112 +733,112 @@ msgstr "" "バグファイリングモードでは、収集した情報は報告する代わりにファイルに保存されます。このファイルは、後で別のコンピューターから報告することができます。" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "Apport のバージョン番号を表示します。" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "クラッシュの解析を行うため端末ウィンドウで apport-retrace を起動します。" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "gdb セッションを実行" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "デバッグシンボルをダウンロードせず gdb セッションを実行" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "%s を完全なシンボリックスタックトレースに更新する" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "この問題レポートは、もうインストールされていないプログラムに対するものです。" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " "occurred." msgstr "この問題はプログラム%sに発生したものですが、このプログラムはクラッシュしてから変更されています。" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "この問題の報告は破損しており、処理することができません。" #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "この報告はインストールされていないパッケージによるものです" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "この問題の報告の処理中にエラーが発生しました:" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "パッケージまたはソースパッケージ名を特定できませんでした。" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "ウェブブラウザーを起動できません" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "%s を開くためのウェブブラウザーを起動できません" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "バグ追跡システム %s にあなたのアカウント情報を入力してください" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "ネットワークの問題" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "クラッシュデータベースに接続できませんでした。インターネット接続を確認してください。" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "メモリー不足" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "あなたのシステムには、このクラッシュレポートを処理するのに十分なメモリがありません。" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -848,14 +849,14 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "問題は既知のものです" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " @@ -863,8 +864,8 @@ msgstr "" "この問題は、ブラウザーに表示されたバグレポートですでに報告されています。開発者にとって役立つような、より詳しい情報を追加できるかどうか確認してください。" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "この問題はすでに開発者にレポートされています。ありがとうございます!" --- apport-2.20.3.orig/po/kab.po +++ apport-2.20.3/po/kab.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:15+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:46+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: kab\n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr "" -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "" @@ -57,11 +57,11 @@ msgid "Ignore future problems of this program version" msgstr "" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "" @@ -69,21 +69,21 @@ msgid "_Examine locally" msgstr "" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "" @@ -97,9 +97,10 @@ "you report." msgstr "" +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "" @@ -107,8 +108,8 @@ msgid "Uploading problem information" msgstr "" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -118,103 +119,103 @@ msgid "Apport crash file" msgstr "" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "" -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "" -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "" -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "" -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "" -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "" -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "" -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "" -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "" @@ -227,30 +228,31 @@ msgid "Destination directory exists and is not empty." msgstr "" -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." msgstr "" -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "" @@ -273,13 +275,13 @@ "Please enter your password to access problem reports of system programs" msgstr "" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "" -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "" @@ -320,9 +322,8 @@ "detection" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "" @@ -332,46 +333,46 @@ msgid "Error: %s is not an executable. Stopping." msgstr "" -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -381,72 +382,72 @@ "be able to retrace crashes that happened on the currently running release." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " "neither -g, -o, nor -s are specified)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "" #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " "and try again." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -455,121 +456,121 @@ "%s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "Agnu deg %s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -577,8 +578,8 @@ "Please create a new report using \"apport-bug\"." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -590,230 +591,230 @@ "Do you really want to proceed?" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " "a single argument is given.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " "ones in %s. (Implied if file is given as only argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " "machine." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " "occurred." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "" #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -821,22 +822,22 @@ "%s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " "helpful for the developers." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "" --- apport-2.20.3.orig/po/kk.po +++ apport-2.20.3/po/kk.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:15+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:46+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: kk\n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr "" -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "" @@ -57,11 +57,11 @@ msgid "Ignore future problems of this program version" msgstr "" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "" @@ -69,21 +69,21 @@ msgid "_Examine locally" msgstr "" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "" @@ -97,9 +97,10 @@ "you report." msgstr "" +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "" @@ -107,8 +108,8 @@ msgid "Uploading problem information" msgstr "" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -118,103 +119,103 @@ msgid "Apport crash file" msgstr "" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "" -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "" -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "" -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "" -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "" -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "" -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "" -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "" -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "" @@ -227,30 +228,31 @@ msgid "Destination directory exists and is not empty." msgstr "" -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." msgstr "" -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "" @@ -273,13 +275,13 @@ "Please enter your password to access problem reports of system programs" msgstr "" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "" -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "" @@ -320,9 +322,8 @@ "detection" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "" @@ -332,46 +333,46 @@ msgid "Error: %s is not an executable. Stopping." msgstr "" -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -381,72 +382,72 @@ "be able to retrace crashes that happened on the currently running release." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " "neither -g, -o, nor -s are specified)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "" #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " "and try again." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -455,121 +456,121 @@ "%s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -577,8 +578,8 @@ "Please create a new report using \"apport-bug\"." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -590,230 +591,230 @@ "Do you really want to proceed?" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " "a single argument is given.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " "ones in %s. (Implied if file is given as only argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " "machine." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " "occurred." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "" #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -821,22 +822,22 @@ "%s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " "helpful for the developers." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "" --- apport-2.20.3.orig/po/km.po +++ apport-2.20.3/po/km.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:15+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:46+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: \n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "Apport" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr "សូម​ទោស កំហុស​ខាង​ក្នុង​បានកើត​ឡើង ។" -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "" "ប្រសិនបើ​អ្នក​កត់​សម្គាល់​បញ្ហា​បន្ថែម ព្យាយាម​ចាប់ផ្ដើម​កុំព្យូទ័រ​ឡើង​វិញ ។" @@ -58,11 +58,11 @@ msgid "Ignore future problems of this program version" msgstr "មិន​អើពើ​បញ្ហា​នាពេល​អនាគត​នៃ​កំណែ​កម្មវិធី​នេះ" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "បង្ហាញ​សេចក្ដី​លម្អិត" @@ -70,21 +70,21 @@ msgid "_Examine locally" msgstr "ត្រួតពិនិត្យ​ជា​មូលដ្ឋាន" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "ទុក​ឲ្យ​បិទ" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "បន្ត" @@ -100,9 +100,10 @@ "ព័ត៌មាន​កំពុង​ត្រូវ​បាន​ប្រមូល​ " "​ដែល​អាច​ជា​ជំនួយ​ដល់​អ្នក​អភិវឌ្ឍន៍​ក្នុង​ការ​កែសម្រួល​របាយការណ៍​កំហុស ។" +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "ផ្ទុក​ព័ត៌មាន​អំពី​បញ្ហា" @@ -110,8 +111,8 @@ msgid "Uploading problem information" msgstr "ផ្ទុក​ព័ត៌មាន​អំពី​បញ្ហា" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -123,103 +124,103 @@ msgid "Apport crash file" msgstr "ឯកសារ​គាំង​របស់ Apport" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "(ទិន្នន័យ​គោល​ពីរ)" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "សូមទោស, កម្មវិធី %s បាន​បញ្ឈប់​ដោយ​មិន​រំពឹង។" -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "សូម​ទោស %s បាន​បិទ​ដោយ​មិន​រំពឹង​ទុក ។" -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "សូម​ទោស %s បាន​ជួប​ប្រទះ​បញ្ហា​ខាង​ក្នុង ។" -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "ផ្ញើ​​របាយការណ៍​អំពី​បញ្ហា​ទៅ​កាន់​​​អ្នក​អភិវឌ្ឍន៍ ?" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "ផ្ញើ" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "បង្ខំ​បិទ" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "ចាប់ផ្ដើម​ឡើង​វិញ" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "កម្មវិធី %s បាន​បញ្ឈប់​ការ​ឆ្លើយតប។" -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "កម្មវិធី \"%s\" បាន​បញ្ឈប់​ការ​ឆ្លើយតប។" -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "កញ្ចប់ ៖ %s" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "សូម​ទោស បញ្ហា​មួយ​បានកើត​ឡើង​ខណៈ​ពេល​ដំឡើង​កម្មវិធី ។" -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "កម្មវិធី %s មាន​បទពិសោធន៍​កំហុស​ខាងក្រៅ។" -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "កម្មវិធី %s បាន​បិទ​ដោយ​មិន​រំពឹង​ទុក ។" -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "មិន​អើពើ​នឹង​បញ្ហា​នា​ពេល​អនាគត​នៃ​ប្រភេទ​នេះ" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "លាក់​សេចក្ដី​លម្អិត" @@ -232,24 +233,25 @@ msgid "Destination directory exists and is not empty." msgstr "មាន​ថត​ទិសដៅ ។" -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "ឈ្មោះ​អ្នក​ប្រើ ៖" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "ពាក្យ​សម្ងាត់ ៖" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "ប្រមូល​ព័ត៌មាន​អំពី​បញ្ហា" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "ប្រមូល​ព័ត៌មាន​អំពី​បញ្ហា" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." @@ -257,7 +259,7 @@ "ព័ត៌មាន​ដែល​បាន​ប្រមូល​អាច​ត្រូវ​បាន​ផ្ញើ​ទៅកាន់​អ្នក​អភិវឌ្ឍន៍ " "ដើម្បី​ធ្វើ​ឲ្យ​កម្មវិធី​ប្រសើរ​ឡើង ។ វា​អាច​ចំណាយ​ពេលវេលា​ពីរបី​នាទី ។" -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "ផ្ទុក​ព័ត៌មាន​អំពី​បញ្ហា" @@ -284,13 +286,13 @@ "សូម​បញ្ចូល​ព័ត៌មាន​លម្អិត​របស់​អ្នក​ " "ដើម្បី​​ចូល​ដំណើរការ​​​របាយការណ៍​បញ្ហា​នៃ​កម្មវិធី​ប្រព័ន្ធ" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "រាយការណ៍​បញ្ហា..." -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "រាយការណ៍​​កំហុស​ទៅកាន់​អ្នក​អភិវឌ្ឍន៍" @@ -341,9 +343,8 @@ "the executable that is run under valgrind's memcheck tool for memory leak " "detection" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "" @@ -354,18 +355,18 @@ msgid "Error: %s is not an executable. Stopping." msgstr "កំហុស៖ %s មិន​អាន​ប្រតិបត្តិ​បាន បាន​បញ្ឈប់។" -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "" "ប្រព័ន្ធ​របស់​អ្នក​អាច​​គ្មាន​ស្ថេរ​ភាព​​ឥឡូវ​នេះ " "ត្រូវ​​ការ​​​ចាប់ផ្ដើម​ឡើងវិញ ។" -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "" "កុំ​ដាក់​ដាន​ថ្មី​​​នៅ​ក្នុង​របាយការណ៍ ប៉ុន្តែ​​អាច​សរសេរ​ទាន់ stdout បាន ។" -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" @@ -373,35 +374,35 @@ "ចាប់ផ្ដើម​សម័យ gdb អន្តរ​សកម្ម​​ជាមួយ​ធាតុ​ចម្បង​របស់​របាយការណ៍ (-o មិន​អើពើ " "មិន​សរសេរ​របាយការណ៍​ឡើងវិញ)" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" "សរសេរ​របាយការណ៍​ដែល​បាន​កែប្រែ​ទៅ​កាន់​ឯកសារ​ដែល​បាន​ផ្ដល់​ជំនួស​ការ​ផ្លាស់ប្" "ដូរ​របាយការណ៍​ដើម" -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "" "យក​ធាតុ​ចម្បង​​ចេញ​ពី​របាយការណ៍ ក្រោយ​​ពេល​ការ​ធ្វើ​ឲ្យ​មាន​​ដាន​ជង់​ឡើងវិញ" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "បដិសេធ CoreFile របស់​របាយការណ៍" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "បដិសេធ ExecutablePath របស់​របាយការណ៍" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "បដិសេធ ProcMaps របស់​របាយការណ៍" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "បង្កើត​ព័ត៌មាន​កញ្ចប់​របស់​របាយការណ៍​ឡើង​វិញ" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -419,26 +420,26 @@ "វា​នឹង​ប្រើ​​ឯកសារ​ការ​កំណត់​រចនាសម្ព័ន្ធ​ប្រព័ន្ធ " "ប៉ុន្តែ​វា​អាច​​តាមដាន​ភាព​គាំង​ឡើង​វិញ នៅ​ពេល​ដែល​វា​ដំណើរការ​ ។" -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "របាយការណ៍​ទាញ​យក/ដំឡើង វឌ្ឍនភាព​ នៅ​ពេល​ដំឡើង​កញ្ចប់​ទៅកាន់​ sandbox" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "" "បន្ថែម​ខាងដើម timestamps ដើម្បី​ចុះ​កំណត់ហេតុ សម្រាប់​ប្រតិបត្តិការ​ច្រើន" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "ថត​ឃ្លាំង​សម្ងាត់​សម្រាប់​កញ្ចប់​ដែល​បាន​ទាញ​យក​នៅ​ក្នុង sandbox" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." @@ -447,7 +448,7 @@ "ពេល​អនាគត​ដំណើរការ​នឹង​សម្មត​ថា​កញ្ចប់​ដែល​បាន​ទាញ​យក​រួច​ហើយ​ត្រូវ​បាន​ស្រង់" "​ចេញ​ទៅ​ sandbox នេះ។" -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " @@ -459,7 +460,7 @@ "ដើម្បី​​ផ្ទុក​ដាន​ជង់​ដែល​បាន​តាមដាន​​ឡើង​វិញ (ប្រសិនបើ​មិន​ត្រូវ​​បញ្ជាក់ -" "g, -o, និង -s)" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." @@ -467,29 +468,29 @@ "បង្ហាញ​ដាន​ជង់​ដែល​បាន​តាម​ដាន​ឡើងវិញ " "សួរ​រក​ការ​អះអាង​មុន​ពេល​ផ្ញើ​វា​ទៅកាន់​មូលដ្ឋាន​ទិន្នន័យ​គាំង ។" -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" "ផ្លូវ​ទៅកាន់​មូលដ្ឋាន​ទិន្នន័យ sqlite​ ស្ទួន (លំនាំដើម ៖ " "គ្មាន​ការ​ត្រួតពិនិត្យ​ស្ទួន​ឡើង)" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "អ្នក​មិន​​អាច​ប្រើ -C without -S. Stopping ។" #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "យល់ព្រម​​ក្នុង​ការ​ផ្ញើ​​​ជា​ឯកសារ​ភ្ជាប់ឬ ? [y/n]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "កញ្ចប់​នេះ​ហាក់​បី​ដូច​ជា​ដំឡើង​មិន​ត្រឹមត្រូវ​ទេ" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " @@ -498,8 +499,8 @@ "នេះ​មិនមែន​ជា​កញ្ចប់ %s ផ្លូវ​ការ​ទេ ។ សូម​យក​កញ្ចប់​ភាគី​ទី​បី​ចេញ " "ហើយ​ព្យាយាម​ម្ដ​ងទៀត ។" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -511,26 +512,26 @@ "សូម​ធ្វើ​វា​​ឲ្យ​កញ្ចប់​ដូច​ខាង​ក្រោម​ប្រសើរ​ឡើង​ " "ហើយ​ពិនិត្យ​មើល​ថាតើ​នៅ​តែ​មាន​បញ្ហា​កើត​ឡើង​ទៀត​ដែរឬទេ ៖ %s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "មិន​ស្គាល់​កម្មវិធី" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "សូម​ទោស កម្មវិធី \"%s\" មិន​ត្រឹមត្រូវ" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "បញ្ហា​នៅ​ក្នុង %s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." @@ -538,54 +539,54 @@ "កម្មវិធី​កុំព្យូទ័រ​របស់​អ្នក​មិន​មាន​អង្គ​ចងចាំ​គ្រប់គ្រាន់ " "ដើម្បី​ធ្វើវិភាគ​ដោយស្វ័យប្រវត្តិ ហើយ​ផ្ញើ​របាយការណ៍​ទៅ​អ្នក​អភិវឌ្ឍន៍ ។" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "របាយការណ៍​បញ្ហា​មិន​ត្រឹមត្រូវ" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "អ្នក​មិន​ត្រូវ​បាន​អនុញ្ញាត​ឲ្យ​ចូល​មើល​របាយការណ៍​បញ្ហា​នេះ ។" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "កំហុស" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "មិនមាន​ទំហំ​គ្រប់គ្រាន់​ ដើម្បី​ដំណើរការ​របាយការណ៍​នេះ​ទេ ។" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "គ្មាន​កញ្ចប់​បាន​បញ្ជាក់​ទេ" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "" "អ្នក​ត្រូវ​តែ​បញ្ជាក់​កញ្ចប់ ឬ​ PID ។ ចំពោះ​ព័ត៌មាន​បន្ថែម សូម​មើល --help ។" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "សិទ្ធិ​ត្រូវ​បាន​បដិសេធ" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." @@ -593,45 +594,45 @@ "ដំណើរការ​ដែល​បាន​បញ្ជាក់​មិនមែនជា​របស់​អ្នក​ទេ ។ " "សូម​ដំណើរការ​កម្មវិធី​នេះ​ជា​ម្ចាស់​ដំណើរការ ឬ​ដំណើរការ​ជា root ។" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "PID មិន​ត្រឹមត្រូវ" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "" "លេខ​សម្គាល់​ដំណើរការ​ដែល​បាន​បញ្ជាក់ មិន​មែន​ជា​របស់​កម្មវិធី​​នេះ​ទេ ។" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "ស្គ្រីប​សញ្ញា %s មិន​បាន​កំណត់​កញ្ចប់​ដែល​មាន​ប្រសិទ្ធភាព​ឡើយ" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "គ្មាន​កញ្ចប់ %s ឡើយ" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "មិន​អាច​ធ្វើ​របាយការណ៍​​បាន​ឡើយ" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "ធ្វើ​បច្ចុប្បន្នភាព​របាយការណ៍​​អំពី​បញ្ហា" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -643,8 +644,8 @@ "\n" "សូម​ធ្វើ​របាយការណ៍​ថ្មី \"apport-bug\" ។" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -664,68 +665,68 @@ "\n" "តើ​អ្នក​ពិត​ជា​ចង់​ធ្វើ​បន្ត​ឬ ?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "គ្មាន​ព័ត៌មាន​បន្ថែម​​ដែល​បាន​ប្រមូល​ឡើយ ។" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "តើ​ប្រភេទ​បញ្ហា​អ្វី​ដែល​អ្នក​ចង់​រាយការណ៍ ?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "មិន​ស្គាល់​សញ្ញា" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "មិន​ស្គាល់​សញ្ញា \"%s\" ។" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." msgstr "" "ក្រោយ​ពេល​​បិទ​សារ​នេះ សូម​ចុច​លើ​​បង្អួច​កម្មវិធី ដើម្បី​រាយការណ៍​អំពី​វា ។" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "បាន​បរាជ័យ xprop ដើម្បី​កំណត់​លេខ​សម្គាល់​ដំណើរការ​របស់​បង្អួច" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "%prog " -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "បញ្ជាក់​ឈ្មោះ​កញ្ចប់ ។" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "" "បន្ថែម​ស្លាក​​ខាងក្រៅ​ដើម្បី​រាយការណ៍ ។ អាច​ត្រូវ​បាន​បញ្ជាក់​ពេលវេលា​ច្រើន ។" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " @@ -736,20 +737,20 @@ "បង្ហាញ​បញ្ជី​សញ្ញា​ដែល​មិន​ស្គាល់ ។ (បាន​បញ្ជាក់ " "ប្រសិនបើ​អាគុយម៉ង់​ត្រូវ​បាន​ផ្ដល់​ឲ្យ ។)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "ចុច​លើ​បង្អួច​ដែល​ជា​គោលដៅ​សម្រាប់​បំពេញ​របាយការណ៍​អំពី​បញ្ហា ។" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "" "ចាប់ផ្ដើម​ជា​របៀប​​ការ​ធ្វើ​បច្ចុប្បន្នភាព​កំហុស ។ អាច​យក​កញ្ចប់ --ជា​ជម្រើស " "។" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" @@ -757,8 +758,8 @@ "ឯកសារ​របាយការណ៍​កំហុស​អំពី​សញ្ញា ។ (បាន​បញ្ជាក់ " "ប្រសិនបើ​ឈ្មោះ​សញ្ញា​ត្រូវ​បាន​ផ្ដល់​ជា​អាគុយម៉ង់​តែមួយ ។)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" @@ -767,8 +768,8 @@ "ត្រូវ​បាន​បញ្ជាក់ ។ (បាន​បញ្ជាក់ " "ប្រសិនបើ​​ឈ្មោះ​កញ្ចប់​ត្រូវ​បាន​ផ្ដល់​ជា​អាគុយម៉ង់​តែមួយ ។)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " @@ -778,13 +779,13 @@ "វា​ត្រូវ​បាន​បញ្ជាក់ របាយការណ៍​កំហុស​នឹង​មាន​ព័ត៌មាន​បន្ថែម ។ (បាន​បញ្ជាក់ " "ប្រសិនបើ pid ត្រូវ​បាន​ផ្ដល់​ជា​អាគុយម៉ង់​តែមួយ ។)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "pid ដែល​បាន​ផ្ដល់​ជា​កម្ម​វិធី​ដែល​បាន​ព្យួរ។" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " @@ -793,8 +794,8 @@ "របាយការណ៍​គាំង​​ដែល​បាន​ផ្ដល់​ពី​ឯកសារ .apport ឬ .crash ជំនួស​នៅ​ក្នុង%s. ( " "បាន​បញ្ជាក់​ ប្រសិនបើ​ឯកសារ​ត្រូវ​បាន​ផ្ដល់​​តែ​អាគុយម៉ង់ ។)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " @@ -804,46 +805,46 @@ "រក្សាទុក​ព័ត៌មាន​ដែល​បាន​ប្រមូល​នៅ​ក្នុង​ឯកសារ​​ជំនួស​ការ​ធ្វើ​របាយការណ៍​​អំព" "ី​វា ។ ឯកសារ​នេះ​​អាច​ត្រូវ​បាន​​រាយការណ៍​​ក្រោយ​ពេល​ពី​ម៉ាស៊ីន​ខុសគ្នា ។" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "បោះពុម្ព​លេខ​កំណែ Apport ។" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "" "វា​នឹង​ចាប់ផ្ដើម apport-retrace នៅ​ក្នុង​បង្អួយ​ស្ថានីយ " "ដើម្បី​ត្រួតពិនិត្យ​​ភាគ​គាំង ។" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "រត់​សម័យ gdb" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "រត់​សម័យ gdb ដោយ​មិន​ទាញ​យក​និមិត្ត​សញ្ញា​បំបាត់​កំហុស" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "ធ្វើ​បច្ចុប្បន្ន %s ជា​មួយ​ដាន​​ជា​​​និមិត្ត​សញ្ញា​ពេញលេញ" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "" "របាយការណ៍​អំពី​បញ្ហា​នេះ​អនុវត្ត​កម្មវិធី​ដែល​មិន​ត្រូវ​បាន​ដំឡើង​ទៀត​ឡើយ ។" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " @@ -852,74 +853,74 @@ "បញ្ហា​បានកើត​ឡើង​ជា​មួយ​កម្មវិធី %s " "ដែល​បាន​ផ្លាស់ប្ដូរ​តាំង​ពី​​មាន​ការ​គាំង ។" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "របាយការណ៍​អំពី​បង្ហាញ​នេះ​ខូច ហើយ​មិន​អាច​ធ្វើ​បន្ត​បាន​ទេ ។" #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "របាយការណ៍​ស្ថិត​នៅ​ក្នុង​កញ្ចប់​ដែល​មិន​ត្រូវ​បាន​ដំឡើង ។" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "កំហុស​មួយ​បាន​កើត​ឡើង​ នៅ​ពេល​ព្យាយាម​ដំណើរការ​របាយការណ៍​បញ្ហា​នេះ ៖" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "មិន​អាច​កំណត់​​ ឈ្មោះ​កញ្ចប់​ប្រភព ឬ​កញ្ចប់​បាន​ឡើយ ។" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "មិន​អាច​ចាប់ផ្ដើម​កម្មវិធី​រុករក​បណ្ដាញ​បាន​ទេ" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "មិន​អាច​ចាប់ផ្ដើម​កម្មវិធី​រុករក​បណ្ដាញ ដើម្បី​បើក %s បាន​ទេ ។" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "" "សូម​បញ្ចូល​ព័ត៌មាន​អំពី​គណនី​របស់​អ្នក​​សម្រាប់​ប្រព័ន្ធ​តាមដាន​កំហុស %s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "បញ្ហា​បណ្ដាញ" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" "មិន​អាច​តភ្ជាប់​ទៅកាន់​មូលដ្ឋាន​ទិន្នន័យ​គាំង​បាន​ទេ " "សូម​ពិនិត្យមើល​ការ​តភ្ជាប់​អ៊ីនធឺណិត​របស់​អ្នក ។" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "ការ​ប្រើ​​​អស់​អង្គ​ចងចាំ" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "" "ប្រព័ន្ធ​របស់​អ្នក​មិន​មាន​អង្គ​ចងចាំ​គ្រប់គ្រាន់ " "ដើម្បី​ដំណើរការ​របាយការណ៍​គាំង​នេះ​ទេ ។" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -930,14 +931,14 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "ស្គាល់​​​អំពី​បញ្ហា​ហើយ" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " @@ -948,8 +949,8 @@ "ប្រសិនបើ​អ្នក​អាច​បន្ថែម​ព័ត៌មាន​បន្ថែម " "​​ដែល​​​អា​ផ្ដល់​ជា​ប្រយោជន៍​សម្រាប់​​អ្នក​អ្នក​អភិវឌ្ឍន៍ ។" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "បញ្ហា​នេះ​​អាច​ត្រូវ​បាន​រាយការណ៍​ទៅ​កាន់​​​អ្នក​អភិវឌ្ឍន៍ ។ អរគុណ !" --- apport-2.20.3.orig/po/kn.po +++ apport-2.20.3/po/kn.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:15+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:46+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: kn\n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr "" -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "" @@ -57,11 +57,11 @@ msgid "Ignore future problems of this program version" msgstr "" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "ವಿವರಗಳನ್ನು ತೋರಿಸು" @@ -69,21 +69,21 @@ msgid "_Examine locally" msgstr "" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "ಮುಂದುವರಿಸು" @@ -99,9 +99,10 @@ "ನೀವು ವರದಿ ಮಾಡಿದ ತೊಂದರೆಯನ್ನು ಸರಿ ಮಾಡಲು ವಿಕಾಸಗಾರರಿಗೆ ಸಹಾಯವಾಗಲು ಮಾಹಿತಿಯನ್ನು " "ಸಂಗ್ರಹಿಸಲಾಗುತ್ತಿದೆ." +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "ತೊಂದರೆ ಮಾಹಿತಿಯನ್ನು ಅಪ್ಲೋಡ್ ಮಾಡಲಾಗುತ್ತಿದೆ" @@ -109,8 +110,8 @@ msgid "Uploading problem information" msgstr "" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -122,103 +123,103 @@ msgid "Apport crash file" msgstr "Apport ಕುಸಿತದ ಕಡತ" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "(ಬೈನರಿ ದತ್ತಾಂಶ)" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "ಕ್ಷಮಿಸಿ, %s ಅನ್ವಯಿಕವು ಅನಿರೀಕ್ಷಿತವಾಗಿ ನಿಂತುಹೋಗಿದೆ" -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "" -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "ಕ್ಷಮಿಸಿ, %s - ಇದು ಆಂತರಿಕ ತೊಂದರೆಯನ್ನು ಅನುಭವಿಸುತ್ತಿದೆ" -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "ದೋಷ ವರದಿಯನ್ನು ವಿಕಾಸಗಾರರಿಗೆ ರವಾನಿಸುವುದೇ?" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "ಕಳುಹಿಸು" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "ಬಲವಂತವಾಗಿ ಮುಚ್ಚಿದೆ" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "ಮರುಪ್ರಾರಂಭಿಸು" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "%s - ಈ ಅನ್ವಯಿಕೆಯು ಸ್ಪಂದಿಸುವುದನ್ನು ನಿಲ್ಲಿಸಿದೆ" -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "%s - ಈ ತಂತ್ರಾಂಶವು ಸ್ಪಂದಿಸುವುದನ್ನು ನಿಲ್ಲಿಸಿದೆ" -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "" -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "" -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "" -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "" @@ -231,30 +232,31 @@ msgid "Destination directory exists and is not empty." msgstr "" -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "ಕುಸಿತದಿಂದ ಮಾಹಿತಿಯನ್ನು ಪಡೆದುಕೊಳ್ಳಲಾಗುತ್ತಿದೆ" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." msgstr "" -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "" @@ -277,13 +279,13 @@ "Please enter your password to access problem reports of system programs" msgstr "" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "ಒಂದು ತೊಂದರೆಯನ್ನು ವರದಿ ಮಾಡು..." -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "ಒಂದು ಅಸಮರ್ಪಕ ಕಾರ್ಯವನ್ನು ವಿಕಾಸಗಾರರಿಗೆ ವರದಿ ಮಾಡು" @@ -324,9 +326,8 @@ "detection" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "" @@ -336,47 +337,47 @@ msgid "Error: %s is not an executable. Stopping." msgstr "" -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "ಹೊಸ ಜಾಡನ್ನು (ಟ್ರೇಸ್) ವರದಿಗೆ ಬರೆಯಬೇಡ, ಬದಲಾಗಿ ಅದನ್ನು stdout ಗೆ ಬರೆ" -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" "ಮೂಲ ವರದಿಯನ್ನು ಬದಲಾಯಿಸುವ ಬದಲು ಬದಲಾವಣೆ ಮಾಡಿದ ವರದಿಯನ್ನು ಹೇಳಿದ ಕಡತಕ್ಕೆ ಬರೆ" -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -386,72 +387,72 @@ "be able to retrace crashes that happened on the currently running release." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " "neither -g, -o, nor -s are specified)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "" #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "ಈ ಕಡತಗಳನ್ನು ಲಗತ್ತಿಸಿ ಕಳುಹಿಸಲು ಸಮ್ಮತಿಯೆ? [y/n]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " "and try again." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -464,82 +465,82 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "ಅಜ್ಜ್ನಾತ ಪ್ರೋಗ್ರಾಮ್" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "ಕ್ಷಮಿಸಿ %s ಪ್ರೋಗ್ರಾಮ್ ಅನಿರೀಕ್ಷಿತವಾಗಿ ಅಂತ್ಯಗೊಂಡಿದೆ" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "%s ನಲ್ಲಿ ತೊಂದರೆ" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "ಅಸಿಂಧುವಾದ ತೊಂದರೆ ವರದಿ" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "ನಿಮಗೆ ಈ ತೊಂದರೆ ವರದಿಯನ್ನು ಪರಿಶೀಲಿಸುವ ಅಧಿಕಾರವಿಲ್ಲ" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "ದೋಷ" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "" "ಈ ತೊಂದರೆ ವರದಿಯನ್ನು ಪರಿಶೀಲಿಸಲು ಬೇಕಾಗುವಷ್ಟು ಸ್ಥಳಾವಕಾಶ ನಿಮ್ಮ ಗಣಕಯಂತ್ರದ " "ಡಿಸ್ಕ್(ಮುದ್ರಿಕೆಯಲ್ಲಿ) ನಲ್ಲಿ ಇಲ್ಲ" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "ಯಾವುದೇ ಪ್ಯಾಕೆಜ್ ಹೇಳಲಾಗಿಲ್ಲ" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "" "ನೀವು ಪ್ಯಾಕೆಜ್ ಅಥವಾ PID ಯನ್ನು ಉಲ್ಲೇಖಿಸಬೇಕು. ಹೆಚ್ಚಿನ ಮಾಹಿತಿಗಾಗಿ --help ಅನ್ನು " "ನೋಡಿ" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "ಅನುಮತಿಯು ನಿರಾಕರಿಸಲ್ಪಟ್ಟಿದೆ" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." @@ -547,44 +548,44 @@ "ಉಲ್ಲೇಖಿಸಿದ ಪ್ರಕ್ರಿಯೆಯು ನಿಮಗೆ ಸಂಬಂಧಿಸಿದಲ್ಲ. ದಯವಿಟ್ಟು ಈ ಅನ್ವಯವನ್ನು ಪ್ರಕ್ರಿಯೆಯ " "ಯಜಮಾನನಾಗಿ ಅಥವಾ root ಆಗಿ ಚಾಲನೆ ಮಾಡಿ." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "ಅಮಾನ್ಯವಾದ pid" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "ಉಲ್ಲೇಖಿಸಿದ ಪ್ರಕ್ರಿಯೆಯ ID ಯಾವುದೇ ಅನ್ವಯಕ್ಕೆ ಸಂಬಂಧಿಸಿದ್ದಲ್ಲ" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "%s ಪ್ಯಾಕೆಜ್ ಅಸ್ಥಿತ್ವದಲ್ಲಿಲ್ಲ" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -592,8 +593,8 @@ "Please create a new report using \"apport-bug\"." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -605,231 +606,231 @@ "Do you really want to proceed?" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "ನೀವು ಯಾವ ವಿಧದ ತೊಂದರೆಯನ್ನು ವರದಿ ಮಾಡಲು ಬಯಸುತ್ತೀರಿ" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "ಅಜ್ಞಾತ ಕುರುಹು" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "\"%s\" ಕುರುಹಿನ ಬಗ್ಗೆ ತಿಳಿದಿಲ್ಲ." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " "a single argument is given.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " "ones in %s. (Implied if file is given as only argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " "machine." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "Apport ನ ಆವೃತ್ತಿ ಸಂಖ್ಯೆಯನ್ನು ಮುದ್ರಿಸು." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " "occurred." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "ಈ ತೊಂದರೆ ವರದಿ ಹಾನಿಗೊಂಡಿದೆ ಆದುದರಿಂದ ಪರಿಷ್ಕರಣೆ ಮಾಡಲಾಗುತ್ತಿಲ್ಲ" #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "ಜಾಲ ವೀಕ್ಷಕವನ್ನು ಆರಂಭಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "%s ಅನ್ನು ತೆರೆಯಲು ಜಾಲ ವೀಕ್ಷಕವನ್ನು ಆರಂಭಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "ಮೆಮೊರಿ ಖಾಲಿಯಾಗಿದೆ" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -840,22 +841,22 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "ಈಗಾಗಲೆ ತಿಳಿದಿರುವ ತೊಂದರೆ." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " "helpful for the developers." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "" --- apport-2.20.3.orig/po/ko.po +++ apport-2.20.3/po/ko.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:15+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:46+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: ko\n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr "" -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "" @@ -57,11 +57,11 @@ msgid "Ignore future problems of this program version" msgstr "" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "" @@ -69,21 +69,21 @@ msgid "_Examine locally" msgstr "" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "" @@ -97,9 +97,10 @@ "you report." msgstr "개발자가 여러분이 보낸 보고서를 통해 문제점을 해결할 수 있도록 정보를 수집하고 있습니다." +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "문제점 정보를 업로드하는 중" @@ -107,8 +108,8 @@ msgid "Uploading problem information" msgstr "문제점 정보를 업로드하는 중" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -118,103 +119,103 @@ msgid "Apport crash file" msgstr "" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "(바이너리 데이터)" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "" -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "" -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "" -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "문제점을 개발자에게 보고하시겠습니까?" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "" -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "" -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "" -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "" -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "" -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "" @@ -227,30 +228,31 @@ msgid "Destination directory exists and is not empty." msgstr "" -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "문제점 정보를 모으는 중" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." msgstr "" -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "" @@ -273,13 +275,13 @@ "Please enter your password to access problem reports of system programs" msgstr "" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "문제점 보고..." -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "개발자에게 버그를 보고합니다" @@ -320,9 +322,8 @@ "detection" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "" @@ -332,46 +333,46 @@ msgid "Error: %s is not an executable. Stopping." msgstr "" -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -381,72 +382,72 @@ "be able to retrace crashes that happened on the currently running release." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " "neither -g, -o, nor -s are specified)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "" #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " "and try again." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -458,121 +459,121 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "알 수 없는 문제" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "죄송합니다. \"%s\" 프로그램이 예상치 않게 종료되었습니다" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "%s 내의 문제" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." msgstr "여러분의 컴퓨터에는 자동으로 문제점을 분석하여 개발자에게 보고서를 보낼 수 있을 정도의 충분한 메모리가 없습니다." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "올바르지 않은 문제점 보고서" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "이 문제점 보고서에 접근하도록 허용되지 않았습니다." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "오류" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "디스크 공간이 부족하여 보고서를 처리할 수 없습니다." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "패키지가 지정되지 않음" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "패키지 혹은 PID를 지정해야 합니다. --help 옵션을 이용하여 정보를 볼 수 있습니다." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "권한이 없음" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." msgstr "지정된 프로세스는 여러분이 실행한 것이 아닙니다. 이 프로그램을 직접 실행하거나 root 사용자로 실행하십시오." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "%s 패키지가 존재하지 않습니다" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -580,8 +581,8 @@ "Please create a new report using \"apport-bug\"." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -593,230 +594,230 @@ "Do you really want to proceed?" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "어떤 종류의 문제점을 보고하시겠습니까?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "알려지지 않은 증상" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "\"%s\"은 알려지지 않은 증상입니다." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " "a single argument is given.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " "ones in %s. (Implied if file is given as only argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " "machine." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " "occurred." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "문제점 보고서가 손상되어 처리할 수 없습니다." #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "보고서가 설치되지 않는 패키지에 속해 있습니다." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "패키지나 소스 패키지 이름을 알아낼 수 없습니다." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "웹 브라우저를 시작할 수 없습니다" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "웹 브라우저를 이용하여 %s을(를) 열 수 없습니다." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "네트워크 문제" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "메모리 부족" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "시스템에 충돌 보고서를 처리할 수 있을 만큼의 여유 메모리가 없습니다." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -827,14 +828,14 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "이미 알려진 문제" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " @@ -843,8 +844,8 @@ "이 문제는 웹 브라우저에 표시된 버그 보고서에 이미 보고된 것입니다. 개발자에게 도움이 될 만한 추가적인 정보를 제공할 수 있는지 점검해 " "주십시오." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "" --- apport-2.20.3.orig/po/ku.po +++ apport-2.20.3/po/ku.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:15+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:46+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: ku\n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr "" -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "" @@ -57,11 +57,11 @@ msgid "Ignore future problems of this program version" msgstr "" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "" @@ -69,21 +69,21 @@ msgid "_Examine locally" msgstr "" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "" @@ -97,9 +97,10 @@ "you report." msgstr "" +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "Agahiyên pirsgirêkê tên vebarkirin." @@ -107,8 +108,8 @@ msgid "Uploading problem information" msgstr "" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -118,103 +119,103 @@ msgid "Apport crash file" msgstr "" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "(daneya binary)" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "" -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "" -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "" -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "Raporeka pirsgirêkê ji pisporan re bişîne?" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "" -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "" -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "" -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "" -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "" -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "" @@ -227,30 +228,31 @@ msgid "Destination directory exists and is not empty." msgstr "" -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "Agahiyên pirsgirêkê tên civandin." -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." msgstr "" -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "" @@ -273,13 +275,13 @@ "Please enter your password to access problem reports of system programs" msgstr "" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "" -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "" @@ -320,9 +322,8 @@ "detection" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "" @@ -332,46 +333,46 @@ msgid "Error: %s is not an executable. Stopping." msgstr "" -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -381,72 +382,72 @@ "be able to retrace crashes that happened on the currently running release." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " "neither -g, -o, nor -s are specified)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "" #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " "and try again." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -459,26 +460,26 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "Bernameya nenas" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "Xemgînim, bernameya \"%s\" bi awayekî ne dihat hêvîkirin hat girtin." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "Pirsgirêk di %s de" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." @@ -486,55 +487,55 @@ "Komputera te ne xwediyê têr bîr e ku bixeber vê pirsgirêkê analîz bike û " "raporekê ji pisporan re bişîne." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "Raporkirina pirsgirêkê ya ne derbasdar" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "Destûra te tune tu bigihîjî vê rapora pirsgirêkê." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "Çewtî" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "Ji bo kirina vê raporê têr valahiya dîskê tune." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "Pakêt ne hatiye dîyarkirin." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "" "Divê tu pakêtekê yan jî PID'ekî dîyarbikî. Ji bo agahiya zêdetir li --help " "binêre." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "Destûr nehate dayîn" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." @@ -542,44 +543,44 @@ "Kirara dîyarkirî ne aîdî te ye. Ji kerema xwe ra bernameyê wekî ku xwediyê " "kirarê root be bixebitînin." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "PID'a nederbasdar" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "ID ya kirarê ku hatiye dîyarkirin ne aîdî bernameyekê ye." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "Pakêta %s tune" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -587,8 +588,8 @@ "Please create a new report using \"apport-bug\"." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -600,66 +601,66 @@ "Do you really want to proceed?" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "Çi awayê pirsgirêkê tu dixwazî raporbikî?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "Nîşaneya nenas" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "Nîşaneya \"%s\" nayê zanîn." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " @@ -669,18 +670,18 @@ "yek --pid, ya jîbi tenê --pid ek. Kû yek jî nê dayîn listeya nîşaneyên tên " "zanin nîşandide.(Tê wateya ku hebek arguman bê dayîn.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" @@ -688,151 +689,151 @@ "Di dermafê nîşaneyê da raporeke çewtiyê bipel bike.(Tê wateya ku li şuna " "argumanê navê nîşaneyê bê dayîn.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " "ones in %s. (Implied if file is given as only argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " "machine." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "Hejmara guhertoya Apport çapbike" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "" "Ev rapora çewtiyan li ser bernameyên ku kîjan hêja ne sazkirî be tê sepandin." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " "occurred." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "Ev rapora pirsgirêkê xerabe ye û nayê kirin." #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "Rapor aîdê pakêteke ne barkirî ye." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "Nikare pakêtê destnîşan bike an jî navê pakêtê bibîne" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "Nikare geroka webê bide destpêkirin" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "Nikare geroka webê bide destpêkirin ji bo vekirina %s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "Agahiyên hesabê xwe têkevinê ji bo pergala %s şopandina çewtiyan." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "Pirsgirêka torê" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" "Nikare bi danegeha hilweşînê ve bê girêdan, Girêdana xweyî întenetê qontrol " "bikin." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "Westana bîrê" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "Di pergala te de têr bîr tuneye ku kirara vê rapora çewtiyê bike." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -843,22 +844,22 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "Pirsgirêk jixwe tê zanîn" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " "helpful for the developers." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "" --- apport-2.20.3.orig/po/lo.po +++ apport-2.20.3/po/lo.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:15+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:46+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: \n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr "" -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "" @@ -57,11 +57,11 @@ msgid "Ignore future problems of this program version" msgstr "" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "" @@ -69,21 +69,21 @@ msgid "_Examine locally" msgstr "" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "" @@ -97,9 +97,10 @@ "you report." msgstr "" +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "" @@ -107,8 +108,8 @@ msgid "Uploading problem information" msgstr "" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -118,103 +119,103 @@ msgid "Apport crash file" msgstr "" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "" -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "" -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "" -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "" -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "" -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "" -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "" -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "" -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "" @@ -227,30 +228,31 @@ msgid "Destination directory exists and is not empty." msgstr "" -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." msgstr "" -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "" @@ -273,13 +275,13 @@ "Please enter your password to access problem reports of system programs" msgstr "" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "" -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "" @@ -320,9 +322,8 @@ "detection" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "" @@ -332,46 +333,46 @@ msgid "Error: %s is not an executable. Stopping." msgstr "" -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -381,72 +382,72 @@ "be able to retrace crashes that happened on the currently running release." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " "neither -g, -o, nor -s are specified)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "" #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " "and try again." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -455,121 +456,121 @@ "%s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -577,8 +578,8 @@ "Please create a new report using \"apport-bug\"." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -590,230 +591,230 @@ "Do you really want to proceed?" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " "a single argument is given.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " "ones in %s. (Implied if file is given as only argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " "machine." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " "occurred." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "" #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -821,22 +822,22 @@ "%s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " "helpful for the developers." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "" --- apport-2.20.3.orig/po/lt.po +++ apport-2.20.3/po/lt.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:15+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:46+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: lt\n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "Apport" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr "Atsiprašome, įvyko vidinė klaida." -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "" "Jei pastebite tolesnių problemų, mėginkite paleisti kompiuterį iš naujo." @@ -58,11 +58,11 @@ msgid "Ignore future problems of this program version" msgstr "Ignoruoti šios programos versijos problemas ateityje" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "Rodyti išsamiau" @@ -70,21 +70,21 @@ msgid "_Examine locally" msgstr "_Ištirti vietoje" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "Palikti užvertą" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "Tęsti" @@ -100,9 +100,10 @@ "Renkama informacija, kuri gali padėti kūrėjams pataisyti problemą apie kurią " "pranešėte." +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "Išsiunčiama informacija apie problemą" @@ -110,8 +111,8 @@ msgid "Uploading problem information" msgstr "Siunčiama informacija apie problemą" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -123,103 +124,103 @@ msgid "Apport crash file" msgstr "Apport strigties failas" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "(dvejetainiai duomenys)" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "Atsiprašome, programa „%s“ netikėtai sustojo." -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "Atsiprašome, %s netikėtai užsivėrė." -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "Atsiprašome, %s patyrė vidinę klaidą." -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "Siųsti pranešimą apie problemą kūrėjams?" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "Siųsti" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "Paleisti iš naujo" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "Programa „%s“ nustojo reaguoti." -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "Programa „%s“ nustojo reaguoti." -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "Paketas: %s" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "Atsiprašome, įvyko klaida diegiant programinę įrangą." -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "Programa „%s“ patyrė vidinę klaidą." -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "Programa %s netikėtai užsivėrė." -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "Ignoruoti šio tipo problemas ateityje" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "Slėpti detales" @@ -232,24 +233,25 @@ msgid "Destination directory exists and is not empty." msgstr "Paskirties katalogas egzistuoja ir yra netuščias." -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "Naudotojo vardas:" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "Slaptažodis:" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "Renkama informacija apie problemą" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "Renkama informacija apie problemą" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." @@ -257,7 +259,7 @@ "Surinkta informacija gali būti nusiųsta kūrėjams programai patobulinti. Tai " "gali užtrukti kelias minutes." -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "Išsiunčiama informacija apie klaidą" @@ -284,13 +286,13 @@ "Įveskite slaptažodį, kad prieitumėte prie sistemos programų pranešimų apie " "klaidas" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "Pranešti apie problemą..." -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "Pranešti apie triktį kūrėjams" @@ -331,9 +333,8 @@ "detection" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "" @@ -344,17 +345,17 @@ msgid "Error: %s is not an executable. Stopping." msgstr "" -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "" "Jūsų sistema dabar gali tapti nestabili ir gali reikėti įkrauti OS iš naujo." -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "" "Nedėti naujų pėdsakų į ataskaitą, bet išvesti juos į standartinę išvestį." -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" @@ -362,34 +363,34 @@ "Pradėti interaktyvų gdb seansą su ataskaitos „core dump“ (-o ignoruojamas; " "neperrašo ataskaitos)" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" "Įrašyti modifikuotą ataskaitą į nurodytą failą, vietoje originalios " "ataskaitos keitimo" -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "Pašalinti „core dump“ iš ataskaitos po dėklo pėdsakų atkūrimo." -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "Nustelbti ataskaitos CoreFile" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "Nustelbti ataskaitos ExecutablePath" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "Nustelbti ataskaitos ProcMaps" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "Perdaryti ataskaitos paketų informaciją" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -405,26 +406,26 @@ "naudojami sistemos konfigūravimo failai, bet tada galėsite tik atsekti " "strigtis, kurios įvyko dabar vykdomoje laidoje." -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" "Raportuoti atsiuntimo/įdiegimo eigą kai įdiegiami paketai į smėlio dėžę" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "Prie žurnalo pranešimų pridėti laiko žymes" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "Podėlio katalogas paketams atsiųstiems smėlio dėžėje" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." @@ -432,7 +433,7 @@ "Katalogas išpakuotiems paketams. Vėlesni paleidimai tars, kad bet kuris jau " "atsiųstas paketas yra išpakuotas šioje smėlio dėžėje." -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " @@ -442,7 +443,7 @@ "naudojama, kai nurodomas strigties ID atsektiems dėklo pėdsakams išsiųsti " "(tik, jei nenurodyti -g, -o, ar -s)" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." @@ -450,28 +451,28 @@ "Rodyti atsektus dėklo pėdsakus ir klausti patvirtinimo prieš siunčiant juos " "į strigčių duomenų bazę." -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" "Kelias į dublikatų sqlite duomenų bazę (numatyta r.: netikrinti dublikatų)" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "Negalite naudoti -C be -S. Stabdoma." #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "Ar siųsti šiuos priedus? [y/n]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "Atrodo šis paketas įdiegtas neteisingai" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " @@ -480,8 +481,8 @@ "Tai nėra oficialus %s paketas. Prašome pašalinti bet kokius trečiųjų šalių " "paketus ir pabandyti dar kartą." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -494,26 +495,26 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "nežinoma programa" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "Atsiprašome, programa „%s“ netikėtai užsidarė" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "%s klaida" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." @@ -521,54 +522,54 @@ "Kompiuteris neturi pakankamai laisvos atminties, kad automatiškai " "išanalizuotų problemą ir išsiųstų ataskaitą kūrėjams." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "Neteisinga ataskaita apie klaidą" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "Jums neleidžiama prieiti prie ataskaitos apie problemą." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "Klaida" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "Nepakanka vietos diske šios ataskaitos apdorojimui." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "Nenurodytas paketas" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "" "Jums reikia nurodyti paketą arba PID. Daugiau informacijos gausite su --help." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "Neturite teisės" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." @@ -576,44 +577,44 @@ "Nurodytas procesas jums nepriklauso. Paleiskite programą kaip proceso " "valdytojas ar pagrindinis naudotojas." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "Neteisingas PID" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "Nurodytas proceso ID nepriklauso programai." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "Simptomų scenarijus %s nenustatė paveikto paketo" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "Paketas %s neegzistuoja" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "Ataskaitos sukurti nepavyko" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "Atnaujinama problemos ataskaita" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -625,8 +626,8 @@ "\n" "Prašome sukurti naują pranešimą naudojant „apport-bug“." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -646,30 +647,30 @@ "\n" "Ar tikrai norite tęsti?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "Jokios papildomos informacijos nesurinkta." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "Apie kokią problemų rūšį norite pranešti?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "Nežinomas simptomas" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "Simptomas „%s“ yra nežinomas." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." @@ -677,39 +678,39 @@ "Kai uždarysite šį pranešimą, paspauskite ant programos lango, kad " "praneštumėte apie tai." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "xprop nepavyko nustatyti lango proceso ID" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "%prog " -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "Nurodykite paketo pavadinimą." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "" "Prie ataskaitos pridėti papildomą žymę. Gali būti nurodyta kelis kartus." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" "%prog [parametrai] [simptomas|pid|paketas|programos kelias|.apport/.crash " "failas]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " @@ -719,19 +720,19 @@ "arba tik --pid. Jei nė vienas neduotas, parodyti žinomų simptomų sąrašą. " "(Turima omeny, jei duotas tik vienas argumentas.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "Pranešti apie problemą, paspauskite ant lango." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "" "Pradėti klaidos atnaujinimo režime. Gali prireikti nebūtino --package." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" @@ -739,8 +740,8 @@ "Registruoti pranešimą apie simptomą. (Turima omeny, jei simptomo vardas " "duotas kaip vienintelis argumentas.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" @@ -748,8 +749,8 @@ "Nurodyti paketo vardą --file-bug režime. Tai neprivaloma, jei nurodytas --" "pid. (Turima omeny, jei paketo vardas duotas kaip vienintelis argumentas.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " @@ -759,13 +760,13 @@ "pranešimas apie klaidą turės daugiau informacijos. (Numanoma, jei pateiktas " "„pid“ kaip vienintelis argumentas.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "Pateiktas pid yra užstrigusi programa." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " @@ -774,8 +775,8 @@ "Pranešti apie strigtį iš duoto apport ar .crash failo, o ne iš laukiančių " "%s. (Turima omeny, jei failas duotas kaip vienintelis argumentas.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " @@ -784,116 +785,116 @@ "Pranešimo apie klaidą veiksenoje išsaugoti surinktą informaciją į failą " "vietoje perdavimo. Šis failas gali būti perduotas vėliau iš kito kompiuterio." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "Atspausdinti Apport versijos numerį." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "" "Tai terminalo lange paleis „apport-retrace“ ir bus galima išanalizuoti lūžį." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "Vykdyti gdb sesiją" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "Vykdyti gdb sesiją, neparsiunčiant derinimo simbolių" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "Atnaujinti %s su visiškai simboliniu dėklo pėdsaku" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "Ši ataskaita apie problemą yra programos, kuri jau nėra įdiegta." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " "occurred." msgstr "Problema įvyko su programa %s, kuri pasikeitė nuo strigties įvykio." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "Ši ataskaita apie klaidą yra pažeista ir negali būti apdorota." #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "Ataskaita priklauso neįdiegtam paketui" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "Įvyko klaida mėginant apdoroti šį pranešimą apie klaidą:" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "Nepavyko nustatyti paketo ar pirminio paketo vardo." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "Nepavyko paleisti žiniatinklio naršyklės" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "Nepavyko paleisti žiniatinklio naršyklės %s atverti." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "Prašome įvesti savo paskyros informaciją %s klaidų sekimo sistemoje" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "Tinklo problema" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" "Nepavyko prisijungti prie strigčių duomenų bazės, patikrinkite interneto " "ryšį." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "Atminties išnaudojimas" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "" "Jūsų sistema neturi pakankamai atminties ataskaitai apie strigtį apdoroti." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -904,14 +905,14 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "Problema jau žinoma" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " @@ -921,8 +922,8 @@ "rodomoje žiniatinklio naršyklėje. Patikrinkite ar galite pridėti daugiau " "informacijos, kuri galėtų būti naudinga kūrėjams." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "Apie šią problemą jau buvo pranešta kūrėjams. Ačiū!" --- apport-2.20.3.orig/po/lv.po +++ apport-2.20.3/po/lv.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:15+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:46+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: lv\n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr "Atvainojiet, notikusi iekšējā kļūda." -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "Ja jūs pamanāt tālākas problēmas, mēģiniet pārstartēt datoru." @@ -57,11 +57,11 @@ msgid "Ignore future problems of this program version" msgstr "Ignorēt tālākas problēmas ar šo programmas versiju" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "Rādīt detaļas" @@ -69,21 +69,21 @@ msgid "_Examine locally" msgstr "_Eksaminēt lokāli" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "Atstāt aizvērtu" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "Turpināt" @@ -97,9 +97,10 @@ "you report." msgstr "" +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "" @@ -107,8 +108,8 @@ msgid "Uploading problem information" msgstr "" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -118,103 +119,103 @@ msgid "Apport crash file" msgstr "" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "Atvainojiet, lietotne %s negaidīti pārstāja strādāt." -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "Atvainojiet, %s aizvērās negaidīti." -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "Atvainojiet, %s gadījās iekšēja kļūda." -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "Sūtīt" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "Aizvērt piespiedu kārtā" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "Palaist vēlreiz" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "Lietotne %s pārstāja atbildēt." -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "Programma \"%s\" pārstāja atbildēt." -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "Pakotne: %s" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "Atvainojiet, problēma notika instalējot programmatūru." -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "Lietotnei %s gadījās iekšējā kļūda" -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "Lietotne %s aizvērās negaidīti." -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "Ignorēt šāda veida tālākas problēmas" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "Slēpt detaļas" @@ -227,30 +228,31 @@ msgid "Destination directory exists and is not empty." msgstr "" -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." msgstr "" -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "" @@ -277,13 +279,13 @@ "Lūdzu, ievadiet savu paroli, lai piekļūtu sistēmas programmu " "problēmziņojumiem" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "" -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "" @@ -334,9 +336,8 @@ "izpildāmā datne, kas ir palaista ar valgrind memcheck rīku, atmiņas noplūdes " "atklāšanai" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "" @@ -346,46 +347,46 @@ msgid "Error: %s is not an executable. Stopping." msgstr "Kļūda — %s nav izpildāms. Aptur." -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -395,27 +396,27 @@ "be able to retrace crashes that happened on the currently running release." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "Pievienot laika zīmogus žurnāla ierakstiem" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" "Izveidot un izmantot trešās puses krātuves no vietām, kas ir norādītas " "pārskatos" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." @@ -423,40 +424,40 @@ "Direktorija neatpakotajām pakotnēm. Nākotnē programma uzskatīs ka jebkura " "lejupielādētā pakotne ir arī atarhivēta šeit." -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " "neither -g, -o, nor -s are specified)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "Nevar izmantot -C bez -S. Aptur." #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "Šī pakotne šķiet instalēta nekorekti" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " @@ -465,8 +466,8 @@ "Šī nav oficiāla %s pakotne. Lūdzu, noņemiet jebkuras trešās puses pakotnes " "un mēģiniet vēlreiz." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -479,26 +480,26 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "Piedod, bet programma „%s“ negaidīti beidza darboties" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "Problēma ar %s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." @@ -506,53 +507,53 @@ "Jūsu datoram trūkst brīvas atmiņas, lai veiktu automātisku problēmas analīzi " "un nosūtītu ziņojumu izstrādātājiem." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "Jums nav atļauts piekļūt kļūdas ziņojumam." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "Nepietiek brīvas diska vietas, lai apstrādātu šo ziņojumu." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." @@ -560,44 +561,44 @@ "Jums nepieder norādītais process. Lūdzu, palaidiet šo programmu kā procesa " "īpašnieks vai kā root lietotājs." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -605,8 +606,8 @@ "Please create a new report using \"apport-bug\"." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -618,231 +619,231 @@ "Do you really want to proceed?" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " "a single argument is given.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "Norādītais procesa identifikators (pid) ir \"uzkārusies\" lietotne" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " "ones in %s. (Implied if file is given as only argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " "machine." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "" "Tas palaidīs apport-retrace termināļa logā, lai sīkāk izpētītu avāriju." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "Palaist gdb sesiju" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "Palaist gdb sesiju bez atkļūdošanas simbolu lejupielādes" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "Atjaunināt %s ar pilnīgu simbolisko izsekošanas pavedienu" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " "occurred." msgstr "Problēma notika ar programmu %s, kura ir mainījusies kopš avārijas." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "Problēmas ziņojums ir bojāts un to nevar apstrādāt." #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "Notika kļūda apstrādājot šo problēmu ziņojumu:" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -850,22 +851,22 @@ "%s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " "helpful for the developers." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "Šī problēma jau ir ziņota izstrādātājiem. Paldies!" --- apport-2.20.3.orig/po/mhr.po +++ apport-2.20.3/po/mhr.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:16+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:47+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: \n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr "" -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "" @@ -57,11 +57,11 @@ msgid "Ignore future problems of this program version" msgstr "" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "" @@ -69,21 +69,21 @@ msgid "_Examine locally" msgstr "" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "" @@ -97,9 +97,10 @@ "you report." msgstr "" +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "" @@ -107,8 +108,8 @@ msgid "Uploading problem information" msgstr "" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -118,103 +119,103 @@ msgid "Apport crash file" msgstr "" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "" -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "" -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "" -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "" -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "" -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "" -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "" -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "" -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "" @@ -227,30 +228,31 @@ msgid "Destination directory exists and is not empty." msgstr "" -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." msgstr "" -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "" @@ -273,13 +275,13 @@ "Please enter your password to access problem reports of system programs" msgstr "" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "" -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "" @@ -320,9 +322,8 @@ "detection" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "" @@ -332,46 +333,46 @@ msgid "Error: %s is not an executable. Stopping." msgstr "" -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -381,72 +382,72 @@ "be able to retrace crashes that happened on the currently running release." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " "neither -g, -o, nor -s are specified)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "" #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " "and try again." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -455,121 +456,121 @@ "%s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -577,8 +578,8 @@ "Please create a new report using \"apport-bug\"." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -590,230 +591,230 @@ "Do you really want to proceed?" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " "a single argument is given.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " "ones in %s. (Implied if file is given as only argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " "machine." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " "occurred." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "" #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -821,22 +822,22 @@ "%s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " "helpful for the developers." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "" --- apport-2.20.3.orig/po/mk.po +++ apport-2.20.3/po/mk.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:15+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:46+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: mk\n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr "" -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "" @@ -57,11 +57,11 @@ msgid "Ignore future problems of this program version" msgstr "" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "" @@ -69,21 +69,21 @@ msgid "_Examine locally" msgstr "" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "" @@ -97,9 +97,10 @@ "you report." msgstr "" +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "" @@ -107,8 +108,8 @@ msgid "Uploading problem information" msgstr "" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -118,103 +119,103 @@ msgid "Apport crash file" msgstr "" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "" -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "" -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "" -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "" -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "" -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "" -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "" -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "" -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "" @@ -227,30 +228,31 @@ msgid "Destination directory exists and is not empty." msgstr "" -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." msgstr "" -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "" @@ -273,13 +275,13 @@ "Please enter your password to access problem reports of system programs" msgstr "" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "" -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "" @@ -320,9 +322,8 @@ "detection" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "" @@ -332,46 +333,46 @@ msgid "Error: %s is not an executable. Stopping." msgstr "" -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -381,72 +382,72 @@ "be able to retrace crashes that happened on the currently running release." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " "neither -g, -o, nor -s are specified)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "" #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " "and try again." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -455,121 +456,121 @@ "%s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -577,8 +578,8 @@ "Please create a new report using \"apport-bug\"." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -590,230 +591,230 @@ "Do you really want to proceed?" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " "a single argument is given.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " "ones in %s. (Implied if file is given as only argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " "machine." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " "occurred." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "" #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -821,22 +822,22 @@ "%s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " "helpful for the developers." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "" --- apport-2.20.3.orig/po/ml.po +++ apport-2.20.3/po/ml.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:15+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:46+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: ml\n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr "" -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "" @@ -57,11 +57,11 @@ msgid "Ignore future problems of this program version" msgstr "" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "" @@ -69,21 +69,21 @@ msgid "_Examine locally" msgstr "" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "" @@ -97,9 +97,10 @@ "you report." msgstr "" +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "" @@ -107,8 +108,8 @@ msgid "Uploading problem information" msgstr "" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -118,103 +119,103 @@ msgid "Apport crash file" msgstr "" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "" -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "" -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "" -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "" -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "" -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "" -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "" -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "" -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "" @@ -227,30 +228,31 @@ msgid "Destination directory exists and is not empty." msgstr "" -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." msgstr "" -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "" @@ -273,13 +275,13 @@ "Please enter your password to access problem reports of system programs" msgstr "" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "" -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "" @@ -320,9 +322,8 @@ "detection" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "" @@ -332,46 +333,46 @@ msgid "Error: %s is not an executable. Stopping." msgstr "" -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -381,72 +382,72 @@ "be able to retrace crashes that happened on the currently running release." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " "neither -g, -o, nor -s are specified)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "" #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " "and try again." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -455,121 +456,121 @@ "%s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -577,8 +578,8 @@ "Please create a new report using \"apport-bug\"." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -590,230 +591,230 @@ "Do you really want to proceed?" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " "a single argument is given.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " "ones in %s. (Implied if file is given as only argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " "machine." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " "occurred." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "" #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -821,22 +822,22 @@ "%s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " "helpful for the developers." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "" --- apport-2.20.3.orig/po/mr.po +++ apport-2.20.3/po/mr.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:15+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:46+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: mr\n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "एप्पोर्ट" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr "" -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "" @@ -57,11 +57,11 @@ msgid "Ignore future problems of this program version" msgstr "" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "तपशील दर्शवा" @@ -69,21 +69,21 @@ msgid "_Examine locally" msgstr "स्थानीयरित्या तपासा (_E)" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "बंद ठेवा" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "पुढे चला" @@ -97,9 +97,10 @@ "you report." msgstr "" +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "" @@ -107,8 +108,8 @@ msgid "Uploading problem information" msgstr "" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -118,103 +119,103 @@ msgid "Apport crash file" msgstr "" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "(बायनरी डेटा)" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "" -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "" -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "" -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "पाठवा" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "बळपूर्वक बंद केले" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "पुन्हा प्रक्षेपण करा" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "" -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "" -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "पेकेज : %s" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "" -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "" -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "" -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "या प्रकारच्या समस्येकडे दुर्लक्ष करा" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "तपशील लपवा" @@ -227,30 +228,31 @@ msgid "Destination directory exists and is not empty." msgstr "" -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "वापरकर्ता नाव :" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "गुप्तशब्द :" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "समस्या माहिती गोळा करत आहे" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "समस्या माहिती गोळा करत आहे" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." msgstr "" -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "समस्या माहिती अपलोड करत आहे" @@ -273,13 +275,13 @@ "Please enter your password to access problem reports of system programs" msgstr "" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "समस्या अहवाल सादर करा..." -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "" @@ -320,9 +322,8 @@ "detection" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "" @@ -332,46 +333,46 @@ msgid "Error: %s is not an executable. Stopping." msgstr "" -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -381,72 +382,72 @@ "be able to retrace crashes that happened on the currently running release." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " "neither -g, -o, nor -s are specified)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "" #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " "and try again." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -455,121 +456,121 @@ "%s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "अपरिचीत कार्यक्रम" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "%s यात समस्या" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "अवैध समस्या अहवाल" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "त्रुटी" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "परवानगी नाही" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "अवैध पीआयडी" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "पेकेज %s अस्तित्वात नाही" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "अहवाल निर्माण करू शकत नाही" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "समस्या अहवाल अद्ययावत करत आहे" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -577,8 +578,8 @@ "Please create a new report using \"apport-bug\"." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -590,230 +591,230 @@ "Do you really want to proceed?" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "अधिक माहिती गोळा केली नाही." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "अपरिचीत लक्षण" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "%prog " -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "पॅकेज नाव निर्देशित करा." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " "a single argument is given.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " "ones in %s. (Implied if file is given as only argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " "machine." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " "occurred." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "" #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "वेब ब्राउजर सुरु करू शकत नाही" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "%s उघडण्याकरिता वेब ब्राउजर सुरु करू शकत नाही." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "संजाळ समस्या" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "स्मृती अपुरी पडली" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -821,22 +822,22 @@ "%s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "समस्या अगोदरच माहित आहे" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " "helpful for the developers." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "" --- apport-2.20.3.orig/po/ms.po +++ apport-2.20.3/po/ms.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:15+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:47+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: ms\n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "Apport" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr "Maaf, ralat dalaman berlaku." -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "Jika anda mengalami masalah, cuba mulakan semula komputer." @@ -57,11 +57,11 @@ msgid "Ignore future problems of this program version" msgstr "Abai masalah versi program ini dimasa hadapan" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "Papar Perincian" @@ -69,21 +69,21 @@ msgid "_Examine locally" msgstr "_Periksa secara setempat" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "Tinggalkan Tertutup" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "Teruskan" @@ -99,9 +99,10 @@ "Maklumat yang dikutip mungkin membantu para pembangun membaiki masalah yang " "anda laporkan." +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "Memuat naik maklumat masalah" @@ -109,8 +110,8 @@ msgid "Uploading problem information" msgstr "Memuat naik maklumat masalah" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -122,103 +123,103 @@ msgid "Apport crash file" msgstr "Fail rosak Apport" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "(data binari)" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "Maaf, aplikasi %s telah dihentikan tanpa dijangka." -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "Maaf, %s telah ditutup tanpa dijangka." -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "Maaf, %s telah mengalami ralat dalaman." -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "Hantar laporan masalah kepada pembangun?" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "Hantar" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "Paksa Tutup" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "Lancarkan Semula" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "Aplikasi %s telah berhenti membalas." -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "Aplikasi \"%s\" telah berhenti membalas." -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "Pakej: %s" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "Maaf, masalah berlaku semasa memasang perisian." -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "Aplikasi %s telah mengalami ralat dalaman" -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "Aplikasi %s telah ditutup tanpa dijangka." -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "Abai masalah masa hadapan bagi jenis ini" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "Sembunyi Perincian" @@ -231,24 +232,25 @@ msgid "Destination directory exists and is not empty." msgstr "Destinasi direktori wujud dan berisi." -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "Nama Pengguna:" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "Kata Laluan:" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "Mengumpul Maklumat Masalah" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "Mengumpul maklumat masalah" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." @@ -256,7 +258,7 @@ "Maklumat yang dikumpul boleh dihantar ke pembangun untuk pertingkatkan " "kualiti aplikasi. Ia mengambil masa beberapa minit." -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "Memuat Naik Maklumat Masalah" @@ -283,13 +285,13 @@ "Sila masukkan kata laluan anda untuk mencapai laporan masalah bagi program " "sistem" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "Lapor masalah..." -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "Laporkan kerosakan kepada pembangun" @@ -339,9 +341,8 @@ "boleh laku yang berjalan dibawah alat semakan ingatan valgrind untuk " "pengesanan kebocoran ingatan" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "" @@ -352,18 +353,18 @@ msgid "Error: %s is not an executable. Stopping." msgstr "Ralar: %s bukanlah boleh laku. Menghentikan." -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "" "Sistem anda akan menjadi tidak stabil sekarang dan mungkin perlu dimulakan " "semula." -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "" "Jangan letakkan surihan baru kedalam laporan, tetapi tuliskannya ke stdout." -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" @@ -371,35 +372,35 @@ "Mulakan sesi gdb berinteraktif dengan laporan longgokan teras (-o abaikan; " "tidak menulis semula laporan)" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" "Tulis laporan yang diubahsuai pada fail yang diberikan selain dari mengubah " "laporan asal" -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "" "Buang longgokan teras dari laporan selepas penjanaan semula surihan tindanan" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "Batalkan laporan CoreFile" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "Batalkan laporan ExecutablePath" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "Batalkan laporan ProcMaps" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "Bina semula laporan maklumat pakej" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -416,28 +417,28 @@ "menyurih semula kerosakan yang disebabkan keluaran yang dijalankan semasa " "ini." -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" "Lapor kemajuan muat turun/pasang bilang memasang pakej kedalam kekotak pasir" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "Tokok setem masa untuk log mesej, bagi operasi kelompok" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" "Cipta dan guna repositori pihak-ketiga dari asal yang dinyatakan dalam " "laporan" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "Direktori cache untuk pakej yang dimuat turun didakam kekotak pasir" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." @@ -446,7 +447,7 @@ "menganggap mana-mana pakej yang sudah dimuat turun juga diekstrak kedalam " "kotak pasir ini." -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " @@ -456,7 +457,7 @@ "digunakan bila menentukan ID kerosakan untuk muat naik jejak tindanan yang " "dijejakkan semula (hanya jika tidak -g, -o ataupun -s ditentukan)" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." @@ -464,28 +465,28 @@ "Papar jejak tindanan yang dijejakkan semula dan tanya pengesahan sebelum " "menghantarnya ke pangkalan data kerosakan." -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" "Laluan ke pangkalan data sqlite pendua (lalai: tiada pemeriksaan penduaan)" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "Anda tidak bleh guna -C tanpa -S. Dihentikan." #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "OK untuk menghantar lampiran ini? [y/t]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "Pakej ini tidak kelihatan dipasang dengan betul" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " @@ -494,8 +495,8 @@ "Ini bukanlah pakej %s rasmi. Sila buang sebarang pakej pihak ketiga dan cuba " "lagi." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -508,26 +509,26 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "program tidak diketahui" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "Maaf, program \"%s\" terpaksa ditutup" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "Masalah pada %s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." @@ -535,54 +536,54 @@ "Komputer anda tidak mempunyai ingatan bebas yang mencukupi untuk " "menganalisis masalah dan hantar laporan ke pembangun secara automatik." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "Laporan masalah tidak sah" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "Anda tidak dibenarkan mencapai laporan masalah ini." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "Ralat" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "Ruang cakera tidak mencukupi untuk memproses laporan ini." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "Tiada pakej ditentukan" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "" "Anda perlu tentukan pakej atau PID. Rujuk --help untuk maklumat lanjut." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "Keizinan dinafikan" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." @@ -590,44 +591,44 @@ "Proses tersebut bukan milik anda. Sila jalankan program sebagai pemilik " "proses atau root." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "PID tidak sah" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "ID proses yang ditentukan tidak dimiliki oleh program tersebut." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "Skrip simptom %s tidak menentukan pakej yang terjejas" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "Pakej %s tidak wujud" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "Tidak dapat mencipta laporan" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "Mengemaskini laporan masalah" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -639,8 +640,8 @@ "\n" "Sila cipta laporan baru menggunakan \"apport-bug\"." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -661,30 +662,30 @@ "\n" "Adakah anda ingin meneruskannya?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "Tiada maklumat tambahan dikumpulkan." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "Apakah jenis masalah yang anda ingin laporkan?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "Simpton tidak diketahui" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "Simptom \"%s\" tidak diketahui" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." @@ -692,38 +693,38 @@ "Selepas menutup mesej ini sila klik pada tetingkap aplikasi untuk melaporkan " "masalah tersebut." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "xprop gagal memastikan ID proses tetingkap" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "%prog " -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "Nyatakan nama pakej." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "" "Tambahkan tag tambahan kedalam laporan. Boleh dinyatakan beberapa kali." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " @@ -733,18 +734,18 @@ "atau hanya --pid. Jika tidak diberikan, paparkan senarai simptom yang " "diketahui. (Dilaksanakan jika argumen tunggal diberikan.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "Klik pada tetingkap sebagai sasaran untuk failkan laporan masalah" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "Mulakan dalam mod kemaskini pepijat. Boleh ambil pilihan --package." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" @@ -752,8 +753,8 @@ "Failkan laporan pepijat mengenai simptom. (Dilaksanakan jika nama simptom " "diberikan sebagai argumen sahaja.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" @@ -761,8 +762,8 @@ "Nyatakan nama pakej didalam mod --file-bug. Ini merupakan pilihan jika --pid " "ditentukan. (Dilaksanakan jika nama pakej diberikan sebagai argumen sahaja.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " @@ -771,13 +772,13 @@ "Nyatakan nama pakej didalam mod --file-bug. Ini merupakan pilihan jika --pid " "ditentukan. (Dilaksanakan jika nama pakej diberikan sebagai argumen sahaja.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "pid yang disediakan adalah aplikasi tergantung." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " @@ -787,8 +788,8 @@ "dari yang ditangguh pada %s. (Dilaksanakan jika fail hanya diberikan sebagai " "argumen.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " @@ -798,47 +799,47 @@ "selain dari melaporkannya. Fail ini kemudiannya boleh dilaporkan melalui " "mesin yang lain." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "Papar nombor versi Apport." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "" "Ini akan lancarkan apport-retrace didalam tetingkap terminal untuk periksa " "kerosakan." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "Jalankan sesi gdb" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "Jalankan sesi gdb tanpa memuat turun simbol nyahpepijat" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "Kemaskini %s dengan jejak tindanan simbolik penuh" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "" "Laporan masalah ini dilaksanakan kepada program yang mana ia tidak dipasang " "lagi." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " @@ -847,73 +848,73 @@ "Masalah berpunca dari program %s yang mana telah berubah semejak kerosakan " "berlaku." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "Masalah laporan ini ialah sudah rosak dan tidak boleh diproses." #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "Laporan dari pakej yang belum dipasang." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "Ralat berlaku semasa cuba memproses laporan masalah ini:" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "Tidak dapat mengenalpasti pakej atau nama sumber pakej." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "Tidak boleh mulakan pelayar sesawang" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "Tidak boleh mulakan pelayar sesawang untuk membuka %s." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "Sila masukkan maklumat akaun anda untuk sistem penjejakan pepijat %s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "Masalah rangkaian" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" "Tidak dapat menyambung ke pengkalan data kerosakan, sila semak sambungan " "internet anda." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "Kehabisan ingatan" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "" "Sistem anda tidak mempunyai ingatan yang mencukupi untuk memproses laporan " "kerosakan ini." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -924,14 +925,14 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "Masalah sudah pun diketahui" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " @@ -942,8 +943,8 @@ "maklumat lanjutan lagi yang dikira boleh dianggap berguna untuk para " "pembangun." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "Masalah ini sudah dilaporkan kepada pembangun. Terima kasih!" --- apport-2.20.3.orig/po/my.po +++ apport-2.20.3/po/my.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:14+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:46+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: my\n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr "ဆောရီး၊ အတွင်းပိုင်းပြသာနာတက်နေပါသည်" -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "" "နောက်ထပ်ပြသာနာများကိုတွေ့ရှိပါက " @@ -59,11 +59,11 @@ msgid "Ignore future problems of this program version" msgstr "ဒီပရိုဂရမ်ဗားရှင်း၏အနာဂတ်ပြဿနာတွေ Ignore" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "အသေးစိတ်များကို ဖော်ပြပါ။" @@ -71,21 +71,21 @@ msgid "_Examine locally" msgstr "" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "ပိတ်လိုက်မည်" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "ဆက်လုပ်" @@ -99,9 +99,10 @@ "you report." msgstr "" +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "" @@ -109,8 +110,8 @@ msgid "Uploading problem information" msgstr "" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -120,103 +121,103 @@ msgid "Apport crash file" msgstr "" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "(binary data)" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "ဆောရီး application %s သည်ရုပ်တရက်ရပ်သွားသည်။" -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "ဆောရီး %s သည်မမျှော်လင့်ပဲပိတ်သွားပါသည်" -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "ဆောရီး, %s သည်အတွင်းပိုင်းပြသာနာတက်နေသည်။" -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "developer ဆီသို့ပြသာနာများကို သတင်းပို့မည်" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "ပို့မည်။" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "အတင်းပိတ်မည်" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "ပြန်ဖွင့်မည်" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "ဒီ application %s တုံ့ပြန်ရပ်တန့်ခဲ့သည်။" -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "အဆိုပါအစီအစဉ်ကို \"%s\" တုန့်ပြန်ရပ်တန့်ခဲ့သည်။" -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "Package: %s" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "ဆောရီး၊ ဆော့ဝဲလ်သွင်းနေစဉ်ပြသာနာအနည်းငယ်ရှိသည်။" -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "" -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "application %s သည်မမျှော်လင့်ပဲပိတ်သွားသည်" -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "ဒီလိုအမျိုးအစားပြသာနာများကိုလစ်လျူရှုမည်" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "အချက်အလက်များကို ဖျောက်ထားမည်" @@ -229,24 +230,25 @@ msgid "Destination directory exists and is not empty." msgstr "" -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "အသုံးပြုသူအမည် −" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "စကားဝှက် −" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "ပြသာနာအချက်အလက်များကိုစုစည်းနေပါသည်" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "ပြသာနာအချက်အလက်များကိုစုစည်းနေပါသည်" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." @@ -254,7 +256,7 @@ "ဒီ application ကောင်းမွန်စေရန်အတွက် စုဆောင်းရရှိသည့်အချက်အလက်များကို " "developer များထံသို့ပို့မည်။ မိနစ်အနည်းငယ်ကြာနိုင်ပါသည်။" -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "" @@ -281,13 +283,13 @@ "မိမိကွန်ပျူတာ၏စနစ်ကိုပြဿနာအစီရင်ခံစာများဝင်ရောက်ကြည့်ရှုရန်သင့် password " "ကိုရိုက်ထည့်ပေးပါ" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "ပြသာနာတစ်ခုကိုသတင်းပို့မည်" -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "" @@ -328,9 +330,8 @@ "detection" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "" @@ -340,15 +341,15 @@ msgid "Error: %s is not an executable. Stopping." msgstr "" -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "တင်ပြမှုတွင်လမ်းကြောင်းသစ်များမထည့်ပါနှင့် သို့သော် stdout တွင်ရေးပါ" -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" @@ -356,32 +357,32 @@ "gdb အပြန်အလှန်ကဏ္ဍကို တင်ပြမှုရဲ့ ပင်မအစုဖြင့်စတင်ပါ (-o လျစ်လျှူရှု; " "တင်ပြမှုကိုပြန်လည်မရေးတော့ပါ)" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "မူလတင်ပြချက်ကို ပြင်မည့်အစား အသစ်ပြင်ထားသောတင်ပြချက်ကိုရေး၍ပေးပါ" -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "ခြေရာခံမှုထုတ်ပြန်ပြီးနောက် ပင်မပြဿနာအစုကို တင်ပြမှုမှဖယ်ထုတ်ပါ" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "တင်ပြမှုရဲ့ အဓိကဖိုင်ကို ပြင်ရေးပါ" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "တင်ပြမှုရဲ့ ခွင့်ပြုလမ်းကြောင်းကိုပြင်ရေးပါ" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "တင်ပြမှုရဲ့ ProcMaps ကိုပြင်ရေးပါ" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "တင်ပြမှုရဲ့ ပက်ကေ့ချ်အချက်အလက်ကို ပြန်တည်ဆောက်ပါ" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -400,72 +401,72 @@ "ပျက်စီးမှုလမ်းကြောင်းများကိုသာသိနိုင်ပြီးယခုလက်ရှိထွက်ရှိမှုတွင်သာအကြုံးဝင်သည" "်။" -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " "neither -g, -o, nor -s are specified)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "" #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "ဒီ package သည်ကောင်းမွန်စွာမသွင်းထားဘူးဟုထင်ရပါသည်" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " "and try again." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -474,121 +475,121 @@ "%s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "အမည်မသိပရိုဂရမ်" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "ဆောရီး၊ ပရိုဂရမ် \"%s\" သည်မမျှော်လင့်ပဲပိတ်သွားပါသည်" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "%s တွင်ပြသာနတက်နေပါသည်" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "ပြဿနာသတင်းပို့ချက်မမှန်ကန်ပါ" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "ချို့ယွင်းချက်" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "ခွင့်ပြုချက်ငြင်းပယ်ခြင်းခံရပါသည်" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "PID မမှန်ကန်ပါ" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "Package %s သည်မတည်ရှိပါ" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "report မဖန်တီးနိုင်ပါ" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -596,8 +597,8 @@ "Please create a new report using \"apport-bug\"." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -609,230 +610,230 @@ "Do you really want to proceed?" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "ဘယ်လိုပြဿနာမျိုးကိုသတင်းပို့လိုပါသလား။" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " "a single argument is given.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " "ones in %s. (Implied if file is given as only argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " "machine." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "Apport ဗားရှင်းနံပါတ်ကိုပရင့်ထုတ်မည်" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " "occurred." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "" #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "Web browser ကိုမဖွင့်နိုင်ပါ" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "နတ်ဝေါ့ပြသာနာ" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -840,22 +841,22 @@ "%s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "ပြသာနာကိုသိရှိပြီးပါပြီ။" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " "helpful for the developers." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "ဒီပြသာနာကို developer များသို့ပို့ပြီးပါပြီ။ ကျေးဇူးတင်ရှိပါသည်။" --- apport-2.20.3.orig/po/nb.po +++ apport-2.20.3/po/nb.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:15+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:47+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: \n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "Apport" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr "Beklager, det oppsto en intern feil." -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "Prøv å starte datamaskinen på nytt hvis det oppstår flere problemer" @@ -57,11 +57,11 @@ msgid "Ignore future problems of this program version" msgstr "Ignorer fremtidige problemer med denne programversjonen" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "Vis detaljer" @@ -69,21 +69,21 @@ msgid "_Examine locally" msgstr "_Undersøk lokalt" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "Forbli lukket" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "Fortsett" @@ -99,9 +99,10 @@ "Informasjon som kan hjelpe utviklerne med å reparere problemet du " "rapporterer samles inn." +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "Laster opp probleminformasjon" @@ -109,8 +110,8 @@ msgid "Uploading problem information" msgstr "Laster opp feilinformasjon" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -122,103 +123,103 @@ msgid "Apport crash file" msgstr "Apport-krasjfil" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "(binære data)" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "Beklager. Programmet %s har fått en uventet stans." -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "Beklager. %s har lukket seg uventet." -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "Beklager, det har skjedd en intern feil med %s." -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "Send problemrapport til utviklerne?" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "Send" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "Tving lukking" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "Start på nytt" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "Programmet %s svarer ikke." -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "Programmet \"%s\" svarer ikke." -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "Pakke: %s" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "Beklager. Et problem oppstod under installasjon av programvare." -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "Programmet %s har hatt en intern feil." -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "Programmet %s lukket seg uventet." -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "Ignorer denne typen problemer i fremtiden" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "Skjul detaljer" @@ -231,24 +232,25 @@ msgid "Destination directory exists and is not empty." msgstr "Målmappe finnes og er ikke tom." -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "Brukernavn:" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "Passord:" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "Samler informasjon om feil" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "Samler probleminformasjon" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." @@ -256,7 +258,7 @@ "Den innsamlede informasjonen kan sendes til utviklerne for å forbedre " "programmet. Dette kan ta noen minutter." -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "Laster opp informasjon om feil" @@ -282,13 +284,13 @@ msgstr "" "Skriv inn passordet ditt for å få tilgang til systemets feilrapporter" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "Rapporter et problem" -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "Rapporter en feil til utviklerne" @@ -339,9 +341,8 @@ "den kjørbare fila som brukes under valgrinds memcheck-verktøy for å se etter " "minnelekkasje" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "Installer en ekstrapakke i sandkassa (kan spesifiseres flere ganger)" @@ -351,16 +352,16 @@ msgid "Error: %s is not an executable. Stopping." msgstr "Feil: %s er ikke et kjørbart program. Stopper." -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "Systemet ditt kan bli ustabilt nå, og kan måtte startes på nytt." -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "" "Legg ikke til flere meldinger i rapporten, skriv de heller til stdout." -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" @@ -368,36 +369,36 @@ "Start en interaktiv gdb-sesjon med rapportens kjernedump (-o ignoreres; " "skriver ikke rapporten på nytt)" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" "Skriv den endrede rapporten til en gitt fil i stedet for å andre den " "opprinnelige rapporten" -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "" "Fjern kjerne-informasjon fra rapporten etter \"stack trace\" er opprettet på " "nytt" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "Overstyr rapportens kjernefil" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "Overstyr rapportens kjøresti" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "Overstyr rapportens ProcMaps" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "Gjennoppbygg pakkeinformasjonen i rapporten" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -413,27 +414,27 @@ "konfigurasjonsfiler brukt, men da vil du bare kunne spore en kræsj hvis den " "oppstod på utgivelsen som kjører nå." -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" "Rapporter nedlastings- og installasjonsfremdrift når pakker blir installert " "i sandkassa." -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "Sett tidsstempler i starten av logg-meldinger, for bunthåndtering" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "Lag og bruk tredjepartslager fra kilder som er valgt i rapporter" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "Legg pakkenedlastinger for sandkassa i hurtiglageret" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." @@ -441,7 +442,7 @@ "Mappe for utpakkede pakker. Senere kjøringer vil basere seg på at nedlastede " "pakker også har blitt pakket ut til denne sandkassa." -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " @@ -451,34 +452,34 @@ "brukes til å spesifisere en krasj-ID når krasjrapporten lastes opp (kun hvis " "hverken -g, -o, eller -s spesifiseres)" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." msgstr "" "Vis krasjrapporten og be om bekreftelse før den sendes til krasjdatabasen." -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "Sti til kopien av sqlite-databasen. (Forvalgt: ikke se etter kopier)" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "Du kan ikke bruke -C uten -S. Stopper." #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "OK å sende disse som vedlegg? [j/n]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "Denne pakken ser ikke ut til å være korrekt installert" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " @@ -487,8 +488,8 @@ "Dette er ikke en offisiell %s-pakke. Fjern eventuelle tredjepartsprogrammer " "og prøv igjen." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -501,26 +502,26 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "ukjent program" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "Beklager, programmet \"%s\" ble uventet avsluttet" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "Problem i %s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." @@ -528,54 +529,54 @@ "Datamaskinen din har ikke nok tilgjengelig minne for å kunne analysere og " "rapportere problemet automatisk." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "Ugyldig problemrapport" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "Du har ikke tilgang til denne feilrapporten." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "Feil" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "Det er ikke nok ledig diskplass til å behandle denne rapporten." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "Ingen pakke er spesifisert" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "" "Du må spesifisere en pakke eller PID: Se --hjelp for mer informasjon." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "Adgang nektet" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." @@ -583,44 +584,44 @@ "Den valgte prosessen tilhører ikke deg. Kjør dette programmet som eieren av " "prosessen eller som root." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "Ugyldig prosess-id (PID)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "Den valgte prosess-IDen tilhører ikke noe program." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "Symptomskript %s fant ingen berørte pakker" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "Pakken %s finnes ikke" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "Kan ikke lage rapport" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "Oppdaterer problemrapport" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -632,8 +633,8 @@ "\n" "Vennligst lag en ny rapport ved å bruke «apport-bug»." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -653,30 +654,30 @@ "\n" "Ønsker du å fortsette?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "Ingen tilleggsinformasjon har blitt samlet inn." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "Hva slags problem vil du rapportere?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "Ukjent symptom" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "Symptomet \"%s\" er ukjent." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." @@ -684,36 +685,36 @@ "Vennligst klikk på et programvindu etter at du har lukket denne meldingen, " "slik at du kan sende en feilrapport om problemet." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "«xprop» fant ikke vinduets prosess-ID" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "%prog " -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "Angi pakkenavn." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "Legg til et ekstra stikkord i rapporten. Kan nevnes flere ganger." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "%prog [valg] [symptom|pid|pakke|programsti|.apport/.crash-fil]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " @@ -723,19 +724,19 @@ "kun --pid. Hvis ingen av disse er gitt vises en liste over kjente symptomer. " "(Underforstått at ett argument blir gitt)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "" "Klikk på det aktuelle vinduet for å sende en feilrapport om problemet." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "Start i feiloppdateringmodus. Aksepterer en alternativ --pakke." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" @@ -743,8 +744,8 @@ "Send en feilmelding om et problem. (Underforstått hvis problemnavn er gitt " "som eneste argument)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" @@ -752,8 +753,8 @@ "Oppgi pakkenavn i --file-bug-modus. Dette er valgfritt hvis --pid er gitt. " "(Underforstått hvis pakkenavn er gitt som eneste argument.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " @@ -763,13 +764,13 @@ "spesifisert, vil feilrapporten inneholde mer informasjon. (Dette er allerede " "implisert hvis «pid» oppgis som eneste argument.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "Den oppgitte pid-en er en applikasjon som henger." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " @@ -778,8 +779,8 @@ "Rapporter kræsj fra en gitt .apport- eller .crash-fil i stedet for de " "gjeldende i %s. (Underforstått hvis en fil er gitt som eneste argument)." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " @@ -789,45 +790,45 @@ "i stedet for å rapportere den. Filen kan innrapporteres senere, for eksempel " "fra en annen maskin." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "Skriv ut Apport-versjonsnummeret." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "" "Dette vil starte apport-retrace i et terminalvindu for å undersøke krasjen." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "Kjør gdb-økt" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "Kjør gdb-økt uten å laste ned feilrapporteringssymboler" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "Oppdater %s med symbolsk stabelsporing" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "" "Denne problemrapporten gjelder et program som ikke lenger er installert." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " @@ -836,72 +837,72 @@ "Problemet skjedde med programmet %s, som har endret seg siden kræsjen " "oppstod." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "Denne feilrapporten er skadet, og kan ikke behandles." #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "Rapporten tilhører en pakke som ikke er installert." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "En feil oppstod da denne feilrapporten skulle behandles:" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "Kunne ikke bestemme pakken eller kildepakkens navn." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "Kunne ikke starte nettleser" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "Kunne ikke starte nettleseren for å åpne %s." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "" "Vennligst skriv inn kontoinformasjonen din for %s-feilsporingssystemet" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "Nettverksfeil" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" "Kan ikke koble til krasjdatabasen, vennligst sjekk internettforbindelsen." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "Minne fullt" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "" "Systemet ditt har ikke nok minne til å behandle denne krasjrapporten." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -912,14 +913,14 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "Problemet er allerede kjent" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " @@ -929,8 +930,8 @@ "nettleseren. Hvis du har mer informasjon som kan hjelpe utviklerne å løse " "problemet, bør du legge det til i rapporten." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "Dette problemet er allerede rapportert til utviklerne. Takk!" --- apport-2.20.3.orig/po/nds.po +++ apport-2.20.3/po/nds.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:15+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:47+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: \n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr "" -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "" @@ -57,11 +57,11 @@ msgid "Ignore future problems of this program version" msgstr "" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "" @@ -69,21 +69,21 @@ msgid "_Examine locally" msgstr "" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "" @@ -97,9 +97,10 @@ "you report." msgstr "" +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "" @@ -107,8 +108,8 @@ msgid "Uploading problem information" msgstr "" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -118,103 +119,103 @@ msgid "Apport crash file" msgstr "" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "" -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "" -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "" -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "" -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "" -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "" -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "" -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "" -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "" @@ -227,30 +228,31 @@ msgid "Destination directory exists and is not empty." msgstr "" -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." msgstr "" -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "" @@ -273,13 +275,13 @@ "Please enter your password to access problem reports of system programs" msgstr "" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "Rapportiere ein Problem..." -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "" @@ -320,9 +322,8 @@ "detection" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "" @@ -332,46 +333,46 @@ msgid "Error: %s is not an executable. Stopping." msgstr "" -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -381,72 +382,72 @@ "be able to retrace crashes that happened on the currently running release." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " "neither -g, -o, nor -s are specified)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "" #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " "and try again." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -455,121 +456,121 @@ "%s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "Ungültiger Problem Rapport" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -577,8 +578,8 @@ "Please create a new report using \"apport-bug\"." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -590,230 +591,230 @@ "Do you really want to proceed?" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " "a single argument is given.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " "ones in %s. (Implied if file is given as only argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " "machine." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " "occurred." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "" #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -821,22 +822,22 @@ "%s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " "helpful for the developers." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "" --- apport-2.20.3.orig/po/ne.po +++ apport-2.20.3/po/ne.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:15+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:47+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: ne\n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "एपोर्ट" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr "माफ गर्नुहोस् , आन्तरिक त्रुटी आइपर्‍यो ।" -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "अरु समस्याहरू आइपरेमा , कम्प्युटर पुनःसुरु गर्न प्रयास गर्नुहोस्।" @@ -57,11 +57,11 @@ msgid "Ignore future problems of this program version" msgstr "यो प्रोग्राम् संस्करण को भविष्य समस्या बेवास्ता गर्नुहोस्।" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "विवरण देखाउनुहोस्।" @@ -69,21 +69,21 @@ msgid "_Examine locally" msgstr "स्थानीयरूपमा जाँच गर्नुहोस्" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "बन्द नै छोड्नुहोस्।" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "जारी राख्नुहोस" @@ -99,9 +99,10 @@ "सूचना संकलन भइरहेको छ जस्ले डेवलपर्सलाई तपाईंले रिपोर्टको गर्नु भ​एको समस्या " "समाधान गर्न मद्दत हुन​ सक्छ।" +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "समस्याको जानकारी अपलोड हुदैछ​।" @@ -109,8 +110,8 @@ msgid "Uploading problem information" msgstr "समस्याको जानकारी अपलोड हुदैछ​।" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -120,103 +121,103 @@ msgid "Apport crash file" msgstr "एपोर्ट क्र्यास प्रतिवेदनहरू" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "(बायनरी डेटा)" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "माफ गर्नुहोस्, अनुप्रयोग %s अचानक रोकिएको छ।" -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "माफ गर्नुहोस्, %s अचानक बन्द भएको छ।" -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "माफ गर्नुहोस् , %s ले अन्तरिक त्रुटीको सामना गरेको छ।" -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "यो समस्याको प्रतिवेदन डेभेलोपरहरूलाई पठाउन चाहनुहुन्छ ?" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "पठाउनुहोस्" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "_अन्त्य गर्न दवाब दिनुहोस्" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "पुनः खोल्नुहोस्" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "अनुप्रयोग %s ले जवाफ दिन बन्द गरेको छ।" -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "प्रोग्राम %s ले जवाफ दिन बन्द गरेको छ।" -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "प्याकेज: %s" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "माफ गर्नुहोस्, सफ्टवेयर स्थापना गर्दा त्रुटी भयो।" -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "माफ गर्नुहोस् , अनुप्रयोग %s ले आन्तरिक त्रुटीको सामना गरेको छ।" -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "माफ गर्नुहोस्, अनुप्रयोग %s अचानक बन्द भएको छ।" -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "यस प्रकारका समस्याहरूलाई भविष्यमा वेवास्ता गर्नुहोस्" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "विवरण लुकाउनु॒होस्" @@ -229,30 +230,31 @@ msgid "Destination directory exists and is not empty." msgstr "गन्तव्य निर्देशिका अवस्थित छ तथा खाली छैन" -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "प्रयोगकर्ता-नाम:" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "पासवर्ड:" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "समस्या जानकारी सङ्कलन हुँदैछ​।" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "समस्या जानकारी सङ्कलन हुँदैछ​।" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." msgstr "" -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "समस्याको जानकारी अपलोड हुदैछ​।" @@ -277,13 +279,13 @@ "कृपया प्रणाली कार्यक्रम को समस्या रिपोर्ट पहुँच गर्न आफ्नो पासवर्ड प्रविष्ट " "गर्नुहोस" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "समस्या रिपोर्ट गर्नुहोस्..." -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "डेवलपर्सलाई काम नगरे रिपोर्ट गर्नुहोस्" @@ -330,9 +332,8 @@ "detection" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "" @@ -342,46 +343,46 @@ msgid "Error: %s is not an executable. Stopping." msgstr "त्रुटी: %s सञ्चालन गर्न सकिएन। रोक्दै ।" -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "तपाईंको सिस्टम अब अस्थिर बन्न सक्छ र फेरि सुरु गर्न आवश्यक हुन सक्छ।" -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -391,72 +392,72 @@ "be able to retrace crashes that happened on the currently running release." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " "neither -g, -o, nor -s are specified)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "" #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "यो सङ्लग्नहरू पठाउन चाहनुहुन्छ ? [y/n]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " "and try again." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -465,121 +466,121 @@ "%s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "अज्ञात उपक्रम" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "माफ गर्नुहोस्, \"%s\" उपक्रम अप्रत्याशित बन्द भयो।" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "%s मा समस्या" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "अवैध समस्या प्रतिवेदन" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "तपाईंले यो समस्या रिपोर्ट पहुँच गर्न अनुमति छैन।" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "त्रुटि" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "निर्दिष्ट नगरिएको प्यकेज" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "इजाजत अस्वीकार गरियो" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "अवैध PID" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "%s प्याकेज अस्तित्वमा छैन" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "प्रतिवेदन सिर्जना गर्न सकिएन" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "समस्या प्रतिवेदन अद्यावधिक गर्दै" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -587,8 +588,8 @@ "Please create a new report using \"apport-bug\"." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -600,83 +601,83 @@ "Do you really want to proceed?" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "कुनै अतिरिक्त जानकारी संकलन गरिएन ।" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "तपाईले कस्तो समस्या प्रतिवेदन गर्न चाहनुहुन्छ?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "अज्ञात लक्षण" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "\"%s\" लक्षण विदित छैन।" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "%prog <प्रतिवेदन सङ्ख्या>" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "प्याकेज नाम खुलाउनुहोस्" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " "a single argument is given.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" @@ -684,148 +685,148 @@ "कुनै लक्षण सम्बन्धी त्रुटि प्रतिवेदन दर्ता गर्नुहोस्। (जब लक्षण नाम नै " "एकमात्र तर्क भएमा लागू हुने)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " "ones in %s. (Implied if file is given as only argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " "machine." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "gdb सत्र चलाउनुहोस्" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " "occurred." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "यो समस्या रिपोर्ट क्षतिग्रस्त छ र अघी बढ्न सकिदैन।" #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "वेब ब्राउजर सुरु गर्न सकिएन" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "%s खोल्न वेब ब्राउजर सुरु गर्न सकिएन।" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "सञ्जाल समस्या" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "मेमोरी सकियो" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -836,22 +837,22 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "पूर्वविदित समस्या" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " "helpful for the developers." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "" --- apport-2.20.3.orig/po/nl.po +++ apport-2.20.3/po/nl.po @@ -16,15 +16,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:14+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:46+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: \n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "" @@ -44,10 +44,10 @@ msgid "Sorry, an internal error happened." msgstr "Er is helaas een interne fout opgetreden." -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "" "Als er nog steeds problemen zijn, probeer dan de computer opnieuw te starten." @@ -60,11 +60,11 @@ msgid "Ignore future problems of this program version" msgstr "Toekomstige problemen bij deze programmaversie negeren" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "Details tonen" @@ -72,21 +72,21 @@ msgid "_Examine locally" msgstr "lokaal _onderzoeken" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "Gesloten laten" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "Doorgaan" @@ -102,9 +102,10 @@ "Er wordt informatie verzameld die ontwikkelaars kan helpen om het " "gerapporteerde probleem te verhelpen." +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "Bezig met versturen van foutgegevens" @@ -112,8 +113,8 @@ msgid "Uploading problem information" msgstr "Bezig met het versturen van probleeminformatie" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -125,104 +126,104 @@ msgid "Apport crash file" msgstr "Apport-crashbestand" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "(binaire gegevens)" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "Helaas is de toepassing %s onverwacht gestopt." -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "%s is helaas onverwachts gesloten." -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "Er is in %s helaas een interne fout opgetreden." -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "Probleemrapport naar de ontwikkelaars sturen?" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "Versturen" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "Geforceerd gesloten" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "Opnieuw starten" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "De toepassing %s reageert niet meer." -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "Het programma ‘%s’ geageert niet meer." -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "Pakket: %s" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "" "Er is helaas een fout opgetreden bij het installeren van de software." -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "In de toepassing %s is een interne fout opgetreden." -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "De toepassing %s werd onverwachts gesloten." -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "Dit type problemen in de toekomst negeren" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "Details verbergen" @@ -235,30 +236,31 @@ msgid "Destination directory exists and is not empty." msgstr "Doelmap bestaat en is niet leeg." -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "Bezig met verzamelen van probleeminformatie" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." msgstr "" -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "" @@ -285,13 +287,13 @@ "Voer uw wachtwoord in om toegang te krijgen tot de probleemrapporten van " "systeemprogramma's" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "Een probleem rapporteren..." -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "Rapporteer een fout aan de ontwikkelaars" @@ -342,9 +344,8 @@ "het uitvoerbare bestand dat gedraaid wordt onder valgrind's " "geheugencontrolehulpmiddel voor geheugellekkagedetectie" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "" @@ -354,18 +355,18 @@ msgid "Error: %s is not an executable. Stopping." msgstr "Fout: %s is geen uitvoerbaar bestand. Wordt stopgezet." -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "" "Uw systeem kan nu instabiel worden en moet mogelijk opnieuw worden opgestart." -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "" "Nieuwe traces naar stdout schrijven in plaats van ze te plaatsen in het " "rapport." -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" @@ -373,35 +374,35 @@ "Een interactieve gdb-sessie starten met de coredump van het rapport (-o " "genegeerd; herschrijft het rapport niet)" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" "Gewijzigde rapport naar opgegeven bestand schrijven in plaats van het " "originele bestand bij te werken" -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "" "De coredump verwijderen uit het rapport na hergeneratie van de stacktrace" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "CoreFile van rapport overschrijven" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "ExecutablePath van rapport overschrijven" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "ProcMaps van rapport overschrijven" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "Pakketinformatie van rapport opnieuw aanmaken" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -411,28 +412,28 @@ "be able to retrace crashes that happened on the currently running release." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "" "Tijdsaanduiding vooraan in logberichten invoegen, voor batchverwerking" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" "Softwarebronnen van derden, uit bronnen die in rapporten gespecificeerd " "zijn, aanmaken en gebruiken" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." @@ -441,7 +442,7 @@ "uitgegaan worden dat elk reeds gedownloade pakket ook naar deze zandbak is " "uitgepakt." -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " @@ -451,7 +452,7 @@ "wordt gebruikt bij het opgegeven van een crash-ID om hergetraceerde " "stacktraces te uploaden (alleen als -g, -o en -s niet zijn opgegeven)" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." @@ -459,29 +460,29 @@ "Hergetraceerde stacktraces tonen en voor bevestiging vragen alvorens te " "verzenden naar de crash-database." -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" "Pad naar de dubbele sqlite-database (standaard: geen controle voor " "duplicaten)" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "U kunt niet -C zonder -S gebruiken. Wordt stopgezet." #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "Deze bijlagen verzenden? [y/n]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "Dit pakket lijkt niet juist te zijn geïnstalleerd" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " @@ -490,8 +491,8 @@ "Dit is geen officieel %s pakket. Verwijder pakketten van derden en probeer " "het opnieuw." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -505,26 +506,26 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "onbekend programma" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "Excuses, het programma \"%s\" werd onverwachts afgesloten" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "Probleem in %s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." @@ -532,53 +533,53 @@ "Uw computer heeft onvoldoende vrij werkgeheugen om het probleem automatisch " "te analyseren en een rapport naar de ontwikkelaars te sturen." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "Ongeldig probleemrapport" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "U bent niet bevoegd om dit probleemrapport te bekijken." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "Fout" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "Er is onvoldoende schijfruimte om dit rapport te verwerken" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "Geen pakket opgegeven" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "U moet een pakket of PID opgeven. Zie --help voor meer informatie." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "Toegang geweigerd" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." @@ -586,44 +587,44 @@ "U bent niet de eigenaar van het opgegeven proces. Voer dit programma uit als " "proceseigenaar of als root." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "Ongeldig PID" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "Het opgegeven proces-PID behoort niet tot een programma." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "Pakket %s bestaat niet" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -631,8 +632,8 @@ "Please create a new report using \"apport-bug\"." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -644,66 +645,66 @@ "Do you really want to proceed?" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "Wat voor soort probleem wilt u rapporteren?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "Onbekend symptoom" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "Het symptoom \"%s\" is onbekend." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" "%prog [opties] [symptomen|pid|pakket|programmapad|.apport/.crash-bestand]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " @@ -714,18 +715,18 @@ "met bekende symptomen getoond worden. (Impliciet als een enkel argument is " "opgegeven.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" @@ -733,8 +734,8 @@ "Een foutrapport over een symptoom indienen. (Impliciet als symptoomnaam het " "enige argument zijn.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" @@ -742,21 +743,21 @@ "Pakketnaam in --file-bug-modus opgeven. Dit is optioneel als een --pid is " "opgegeven. (Impliciet als pakketnaam het enige argument is.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "De gegeven PID is een vastgelopen toepassing." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " @@ -765,55 +766,55 @@ "De vastloper van een gegeven .apport- of .crash-bestand rapporten in plaats " "van de wachtende rapporten in %s. (Impliciet als file het enige argument is.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " "machine." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "Het versienummer van Apport weergeven." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "" "Dit zal apport-retrace starten in een terminalvenster om de crash te " "onderzoeken." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "gdb-sessie draaien" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "gdb-sessie draaien zonder debugsymbolen te downloaden" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "Update %s met volledige symbolic stack trace" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "" "Dit probleemrapport verwijst naar een programma dat niet meer geinstalleerd " "is." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " @@ -822,72 +823,72 @@ "Het probleem deed zich voor bij het programma %s dat gewijzigd werd sinds " "het voorvallen van de crash." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "Dit probleemrapport is beschadigd en kan niet worden verwerkt." #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "Het rapport behoort bij een pakket dat niet is geïnstalleerd." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "" "Er is een fout opgetreden bij de poging deze probleemrapportage te verwerken:" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "Kon de naam van het pakket of het bronpakket niet bepalen." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "Kon de webbrowser niet starten" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "Kon de webbrowser niet starten om %s te openen." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "Voer uw accountinformatie in voor het foutbeheersysteem %s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "Netwerkprobleem" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" "Verbinding met crash-database mislukt, controleer uw internetverbinding." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "Geheugen vol" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "" "Uw systeem heeft onvoldoende geheugen om dit foutenrapport te verwerken." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -898,14 +899,14 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "Probleem reeds bekend" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " @@ -915,8 +916,8 @@ "webbrowser wordt weergegeven. Controleer of u extra informatie kunt " "toevoegen die voor de ontwikkelaars nuttig kan zijn." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "Dit probleem is al doorgegeven aan de ontwikkelaars. Dank u wel!" --- apport-2.20.3.orig/po/oc.po +++ apport-2.20.3/po/oc.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:15+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:47+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: \n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "Apòrt" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr "O planhèm, una error intèrna s'es producha !" -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "En cas de problèmas mai, ensajatz de reamodar vòstre ordenador." @@ -57,11 +57,11 @@ msgid "Ignore future problems of this program version" msgstr "Ignorar los problèmas que venon d'aquesta version del programa" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "Afichar los detalhs" @@ -69,21 +69,21 @@ msgid "_Examine locally" msgstr "_Examinar en local" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "Daissar tampat" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "Contunhar" @@ -99,9 +99,10 @@ "De donadas son en cors de collècta per ajudar los desvolopaires a corregir " "lo problèma qu'avètz rencontrat." +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "Mandadís de las informacions ligadas al problèma" @@ -109,8 +110,8 @@ msgid "Uploading problem information" msgstr "Mandadís de las informacions ligadas a l'incident" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -122,104 +123,104 @@ msgid "Apport crash file" msgstr "Fichièr d'arrèst brutal d'Apport" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "(donadas binàrias)" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "O planhèm, %s s'es arrestada d'un biais inesperat." -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "O planhèm, %s a quitat d'un biais imprevist." -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "O planhèm, %s a rencontrat una error intèrna." -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "Mandar un rapòrt d'errors als desvolopaires ?" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "Mandar" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "Tampat de fòrça" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "Reaviar" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "L'aplicacion %s a daissat de respondre." -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "Lo programa \"%s\" a daissat de respondre." -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "Paquet : %s" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "" "O planhèm, una error s'es producha al moment de l'installacion del logicial." -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "L'aplicacion %s a patit una error intèrna." -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "L'aplicacion %s a quitat d'un biais imprevist." -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "Ignorar los problèmas d'aquesta mena que venon" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "Amagar los detalhs" @@ -232,24 +233,25 @@ msgid "Destination directory exists and is not empty." msgstr "Lo dorsièr de destinacion existís ja e es pas void." -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "Nom d'utilizaire :" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "Senhal :" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "Collècta de las informacions ligadas al problèma" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "Collècta d'informacions ligadas al problèma" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." @@ -257,7 +259,7 @@ "Las informations collectadas pòdon èsser mandadas als desvolopaires per " "melhorar l'aplicacion. Aquò pòt prene qualques minutas." -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "Mandadís de las informacions ligadas al problèma" @@ -284,13 +286,13 @@ "Picatz vòstre senhal per accedir a de rapòrts de problèmas de programas " "sistèma" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "Senhalar un problèma..." -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "Senhalar un disfoncionament als desvolopaires" @@ -341,9 +343,8 @@ "l'executable aviat dins l'aisina de verificacion de la memòria de valgrind " "per detectar un pèrda de memòria." -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "" @@ -355,18 +356,18 @@ msgid "Error: %s is not an executable. Stopping." msgstr "Error : %s es pas un executable. Arrèst." -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "" "Ara, vòstre sistèma se pòt far instable e pòt aver besonh d'èsser reaviat." -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "" "Plaçar pas las « traças » novèlas dins lo rapòrt de bug, mas los escriure " "sus la sortida estandarda." -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" @@ -374,36 +375,36 @@ "Avia una session gdb interactiva amb l'imatge memòria (core dump) del rapòrt " "(-0 ignorat ; reescriu pas lo rapòrt)" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" "Escriu lo rapòrt dins un fichièr donat puslèu que de modificar lo rapòrt " "d'origina." -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "" "Suprimir l'imatge memòria (core dump) del compte rendut aprèp regeneracion " "de l'estat de la pila" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "Espotir lo fichièr d'imatge memòria (CoreFile) del rapòrt" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "Espotir l'emplaçament de l'executable (ExecutablePath) del rapòrt" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "Espotir la lista dels processus (ProcMaps) del rapòrt" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "Tornar construire las informacions suls paquets del rapòrt" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -420,31 +421,31 @@ "fichièrs de configuracion del sistèma seràn utilizats, mas sols los " "plantatges de la version en cors d'execucion poiràn èsser traçats." -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" "Senhalar l'avançament del telecargament/de l'installacion pendent " "l'installacion de paquets dins lo nauc de sabla." -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "" "Prefixar un orodatatge als messatges de jornal, per un tractament per lòts" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" "Crear e utilizar de depauses tèrces a partir d'originas especificadas dins " "de rapòrts" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "" "Repertòri d'escondedor pels paquets telecargats dins lo nauc de sabla" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." @@ -452,7 +453,7 @@ "Repertòri pels paquets descompressats. Las execucions futuras presumiràn " "qu'un paquet ja telecargat serà tanben extrach dins aqueste nauc de sabla." -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " @@ -463,7 +464,7 @@ "plantatge per cargar l'estat de la pila (solzment se -g, -o o -s son pas " "especificats)" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." @@ -471,29 +472,29 @@ "Afichar l'estat de la pila reconstituida e demandar una confirmacion abans " "de lo mandar a la banca de donadas dels plantatges." -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" "Emplaçament de la còpia de la banca de donadas SQLite (per defaut : pas de " "verificacion de la còpia)" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "Podètz pas utilizar -C sens -S. Arrèst." #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "D'acòrdi per mandar aquò coma pèças juntas ? [y/n]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "Sembla qu'aqueste paquet es pas installat corrèctament." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " @@ -502,8 +503,8 @@ "Aqueste paquet es pas oficialament pres en carga per %s. Desinstallatz tot " "paquet tèrç e tornatz ensajar." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -514,26 +515,26 @@ "Las versions installadas d'unes paquets son obsolets. Metètz a jorn los " "paquets seguents, puèi verificatz se lo problèma es encara present :%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "programa desconegut" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "O planhèm, lo programa « %s » a quitat d'un biais imprevist" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "Problèma dins %s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." @@ -541,54 +542,54 @@ "Vòstre ordenador possedís pas pro de memòria liura per analisar " "automaticament lo problèma e mandar un rapòrt als desvolopaires." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "Rapòrt d'incident invalid" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "Sètz pas autorizat a accedir aqueste rapòrt d'incident." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "Error" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "I a pas pro d'espaci de disc disponible per tractar aqueste rapòrt." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "Cap de paquet pas especificat" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "" "Vos cal precisar un paquet o un PID. Utilizatz --help per mai d'informacions." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "Autorizacion refusada" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." @@ -596,44 +597,44 @@ "Lo processus especificat vos aparten pas. Executar aqueste programa en tant " "que proprietari del processus o en tant qu'administrator (root)." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "PID invalida" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "L'ID de processus especificat aparten pas a cap de programa." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "L'escript %s a pas pogut determinar un paquet afectat" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "Lo paquet %s existís pas" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "Impossible de crear lo rapòrt" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "Mesa a jorn del rapòrt d'incident" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -644,8 +645,8 @@ "tampat o s'agís d'un doblon.\n" "Creatz un rapòrt novèl en utilizant « apport-bug »." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -663,30 +664,30 @@ "\"apport-bug\" e de ne far un comentari dins lo bug inicial. \n" "Sètz segur que volètz contunhar ?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "Cap d'informacion suplementària es pas estada collectada." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "Quin tipe de problèma volètz senhalar ?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "Simptòma desconegut" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "Lo simptòma « %s » es desconegut." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." @@ -694,39 +695,39 @@ "Aprèp la tampadura d'aqueste messatge, clicatz sus la fenèstra de " "l'aplicacion per la quala volètz senhalar un problèma." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "xprop a pas pogut determinar l'ID del processus de la fenèstra" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "%prog " -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "Indicatz lo nom del paquet." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "" "Apondre un marcador suplementari pel rapòrt. Pòt èsser especificat mantun " "còp." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " @@ -736,18 +737,18 @@ "opcion, o simplament --pid. Se n'i a pas cap de provesit, aficha una lista " "de simptòmas coneguts. (Implicit se un sol argument es provesit.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "Clicatz sus la fenèstra per laquala volètz senhalar un problèma." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "Començar en mòde « mesa a jorn de bug ». Accèpta l'opcion --package" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" @@ -755,8 +756,8 @@ "Efectua un senhalament de bug a prepaus d'un simptòma. (Implicit se lo nom " "del simptòma es donat coma argument unic.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" @@ -765,8 +766,8 @@ "pid es especificat. (Implicit se lo nom del paquet es donat coma argument " "unic.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " @@ -776,13 +777,13 @@ "especificat, lo rapòrt de bug contendrà mai d'informacions. (implicita se " "l’identificant del processus es passat coma argument unic)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "Lo pid provesit es una aplicacion que respond pas." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " @@ -792,8 +793,8 @@ "partir de los que son en espèra dins %s. (Implicit se lo fichièr es donat " "coma argument unic.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " @@ -803,47 +804,47 @@ "un fichièr puslèu que de generar un rapòrt. Aqueste fichièr poirà èsser " "utilizat pus tard a partir d'una autra maquina per mandar un rapòrt." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "Aficha lo numèro de version d'Apport." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "" "Aquò va aviar apport-retrace dins una fenèstra de terminal per examinar lo " "crash." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "Aviar una session gdb" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "Executar la session gdb sens telecargar los simbòls de desbugatge" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "Mesa a jorn de %s amb una traça de la pila totalament simbolica" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "" "Aqueste rapòrt d'incident s'aplica a un logicial qu'es pas pus installat per " "aquesta distribucion." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " @@ -851,76 +852,76 @@ msgstr "" "Lo problèma concernís lo programa %s qu'a cambiat dempuèi lo plantatge." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "Aqueste rapòrt d'incident es damatjat e pòt pas èsser tractat." #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "Lo rapòrt fa referéncia a un paquet pasinstallat." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "" "Una error s'es producha al moment del tractament d'aqueste rapòrt " "d'anomalia :" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "Impossible de determinar lo nom del paquet o del paquet font." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "Impossible d'aviar lo navegador web" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "Impossible d'aviar lo navegador web per dobrir %s." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "" "Picatz las informacions de vòstre compte pel sistèma de seguit dels bugs %s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "Problèma de ret" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" "Impossible de se connectar a la banca de donadas dels plantatges. Verificatz " "vòstra connexion a l'Internet." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "Memòria saturada" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "" "Vòstre sistèma dispausa pas de pro de memòria per tractar aqueste rapòrt " "d'incident." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -931,14 +932,14 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "Problèma ja conegut" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " @@ -948,8 +949,8 @@ "vòstre navigador. Verificatz se podètz apondre d'informacions " "complementàrias susceptiblas d'ajudar los desvolopaires." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "Aqueste problèma es ja estat senhalat als desvolopaires. Mercé !" --- apport-2.20.3.orig/po/pa.po +++ apport-2.20.3/po/pa.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:15+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:47+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: pa\n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr "" -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "" @@ -57,11 +57,11 @@ msgid "Ignore future problems of this program version" msgstr "" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "ਵੇਰਵਾ ਵੇਖੋ" @@ -69,21 +69,21 @@ msgid "_Examine locally" msgstr "" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "ਬੰਦ ਰਹਿਣ ਦਿਓ" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "ਜਾਰੀ ਰੱਖੋ" @@ -97,9 +97,10 @@ "you report." msgstr "" +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "" @@ -107,8 +108,8 @@ msgid "Uploading problem information" msgstr "" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -118,103 +119,103 @@ msgid "Apport crash file" msgstr "" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "" -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "" -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "" -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "ਭੇਜੋ" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "ਮੁੜ-ਚਲਾਓ" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "" -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "" -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "ਪੈਕੇਜ: %s" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "ਅਫਸੋਸ, ਸਾਫਟਵੇਅਰ ਇੰਸਟਾਲ ਕਰਨ ਦੌਰਾਨ ਗਲਤੀ ਆਈ ਹੈ।" -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "ਐਪਲੀਕੇਸ਼ਨ %s ਨੂੰ ਅੰਦਰੂਨੀ ਗਲਤੀ ਆਈ ਹੈ।" -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "ਐਪਲੀਕੇਸ਼ਨ %s ਅਚਾਨਕ ਬੰਦ ਹੋ ਗਈ ਹੈ।" -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "ਵੇਰਵਾ ਓਹਲੇ" @@ -227,30 +228,31 @@ msgid "Destination directory exists and is not empty." msgstr "" -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "ਯੂਜ਼ਰ-ਨਾਂ:" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "ਪਾਸਵਰਡ:" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." msgstr "" -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "" @@ -273,13 +275,13 @@ "Please enter your password to access problem reports of system programs" msgstr "" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "ਸਮੱਸਿਆ ਰਿਪੋਰਟ" -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "" @@ -320,9 +322,8 @@ "detection" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "" @@ -333,46 +334,46 @@ msgid "Error: %s is not an executable. Stopping." msgstr "ਗਲਤੀ: %s ਚੱਲਣਯੋਗ ਨਹੀਂ ਹੈ। ਬੰਦ ਹੋ ਰਿਹਾ ਹੈ।" -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -382,72 +383,72 @@ "be able to retrace crashes that happened on the currently running release." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " "neither -g, -o, nor -s are specified)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "" #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " "and try again." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -456,121 +457,121 @@ "%s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -578,8 +579,8 @@ "Please create a new report using \"apport-bug\"." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -591,230 +592,230 @@ "Do you really want to proceed?" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " "a single argument is given.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " "ones in %s. (Implied if file is given as only argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " "machine." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " "occurred." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "" #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -822,22 +823,22 @@ "%s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " "helpful for the developers." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "" --- apport-2.20.3.orig/po/pl.po +++ apport-2.20.3/po/pl.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:15+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:47+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: pl\n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "Apport" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr "Przepraszamy, wystąpił wewnętrzny błąd." -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "" "Jeśli wystąpią kolejne awarie, proszę spróbować ponownie uruchomić komputer." @@ -58,11 +58,11 @@ msgid "Ignore future problems of this program version" msgstr "Ignorowanie przyszłych błędów tej wersji programu" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "Wyświetl szczegóły" @@ -70,21 +70,21 @@ msgid "_Examine locally" msgstr "_Zbadaj lokalnie" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "Pozostaw zakończony" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "Kontynuuj" @@ -100,9 +100,10 @@ "Trwa zbieranie informacji, które mogą pomóc twórcom programu usunąć " "zgłoszony błąd." +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "Wysyłanie informacji o problemie" @@ -110,8 +111,8 @@ msgid "Uploading problem information" msgstr "Wysyłanie informacji o błędzie" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -123,103 +124,103 @@ msgid "Apport crash file" msgstr "Plik zgłoszenia Apport" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "(dane binarne)" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "Niestety, program %s niespodziewanie wstrzymał pracę." -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "Przepraszamy, %s został niespodziewanie zakończony." -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "Przepraszamy, wystąpił wewnętrzny błąd działania %s." -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "Zgłosić błąd twórcom programu?" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "Wyślij" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "Wymuś zakończenie" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "Uruchom ponownie" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "Program %s przestał odpowiadać." -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "Program „%s” przestał odpowiadać." -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "Pakiet: %s" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "Przepraszamy, wystąpił błąd podczas instalowania oprogramowania." -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "Wystąpił wewnętrzny błąd programu %s." -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "Program %s został niespodziewanie zakończony." -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "Ignorowanie problemów tego typu w przyszłości" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "Ukryj szczegóły" @@ -232,24 +233,25 @@ msgid "Destination directory exists and is not empty." msgstr "Katalog docelowy istnieje i nie jest pusty." -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "Nazwa użytkownika:" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "Hasło:" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "Zbieranie informacji o problemie" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "Zbieranie informacji o błędzie" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." @@ -257,7 +259,7 @@ "Zebrane informacje mogą zostać wysłane do twórców programu w celu jego " "usprawnienia. To może potrwać kilka minut." -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "Wysyłanie informacji o błędzie" @@ -281,13 +283,13 @@ msgstr "" "Aby uzyskać dostęp do raportów o błędach systemowych, należy wprowadzić hasło" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "Zgłaszanie błędu" -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "Zgłasza twórcom błędy działania oprogramowania" @@ -336,9 +338,8 @@ "Element wykonalny uruchamiany poprzez narzędzie memcheck programu Valgrind, " "mające za zadanie detekcję wycieków pamięci" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "Instaluje dodatkowy pakiet w piaskownicy (można użyć wiele razy)" @@ -348,19 +349,19 @@ msgid "Error: %s is not an executable. Stopping." msgstr "Błąd: nie można wykonać %s. Zatrzymywanie." -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "" "System może być niestabilny, dlatego może być wymagane jego ponowne " "uruchomienie." -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "" "Nie dodaje nowych śladów do zgłoszenia tylko wypisuje je na standardowe " "wyjście." -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" @@ -368,34 +369,34 @@ "Uruchamia interaktywną sesję gdb na zrzucie pamięci zgłoszenia (ignoruje " "opcję -o; nie przepisuje zgłoszenia)" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" "Napisz zmienione zgłoszenie dla danego pliku zamiast zmieniać oryginalne " "zgłoszenie" -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "Usuwa zrzut pamięci ze zgłoszenia po regeneracji śladu stosu." -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "Zastąp CoreFile raportu" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "Zastąp ExecutablePath raportu" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "Zastąp ProcMaps raportu" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "Przebudowuje informacje o pakiecie w zgłoszeniu" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -412,30 +413,30 @@ "śledzenie i analiza (retrace) problemów, które miały miejsce w bieżąco " "zainstalowanym wydaniu systemu." -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" "Wyświetl pasek postępu pobierania/instalowania podczas instalowania pakietów " "w piaskownicy" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "" "Dodanie informacji o czasie do logów dla operacji trybu wsadowego (batch " "operation)" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" "Utwórz i użyj repozytoriów osób trzecich ze źródeł określonych w raportach" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "Określa katalog podręczny pakietów pobieranych do piaskownicy" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." @@ -443,7 +444,7 @@ "Katalog dla nierozpakowanych pakietów. Przyszłe użycie domyślnie założy, że " "każdy z już pobranych pakietów, jest również rozpakowany do tego sandboxa." -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " @@ -453,7 +454,7 @@ "używana podczas podawania identyfikatora problemu w celu przesłania ponownie " "prześledzonego śladu stosu (tylko jeśli nie użyto -g, -o, oraz -s)" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." @@ -461,29 +462,29 @@ "Wyświetla ponownie wyśledzone ślady stosu i pyta o potwierdzenie przez " "wysłaniem ich do bazy błędów." -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" "Ścieżka do zduplikowanej bazy danych sqlite (domyślnie: bez wyszukiwania " "duplikatów)" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "Nie można użyć -C bez -S. Zatrzymywanie." #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "Wysłać to jako załączniki? [y/n]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "Prawdopobnie pakiet został zainstalowany nieprawidłowo" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " @@ -492,8 +493,8 @@ "To nie jest oficjalny pakiet %s. Proszę usunąć wszystkie pakiety pochodzące " "z innych źródeł niż oficjalne i spróbować ponownie." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -506,26 +507,26 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "nieznany program" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "Przepraszamy, program %s został niespodziewanie zakończony" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "Wystąpił problem w %s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." @@ -533,57 +534,57 @@ "Komputer nie posiada wystarczającej ilości wolnej pamięci, aby automatycznie " "przeanalizować problem i zgłosić błąd do twórców programu." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "Nieprawidłowe zgłoszenie o błędzie" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "Brak dostępu do zgłoszenia o błędzie." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "Błąd" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "" "Brak wystarczającej ilości wolnego miejsca na dysku, aby przetworzyć to " "zgłoszenie." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "Nie określono pakietu" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "" "Należy określić pakiet lub identyfikator procesu. Proszę użyć opcji --help, " "aby uzyskać więcej informacji." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "Brak dostępu" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." @@ -591,45 +592,45 @@ "Określony proces nie jest własnością bieżącego użytkownika. Proszę uruchomić " "ten program jako właściciel procesu lub jako administrator." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "Nieprawidłowy identyfikator procesu" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "" "Określony identyfikator procesu nie powiązany jest z żadnym programem." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "Skrypt symptomu %s nie określił pakietu" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "Pakiet %s nie istnieje" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "Nie można utworzyć raportu" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "Uaktualnianie zgłoszenia o błędzie" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -641,8 +642,8 @@ "\n" "Proszę zgłosić błąd używając narzędzia \"apport-bug\"." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -663,30 +664,30 @@ "\n" "Kontynuować?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "Nie zebrano dodatkowych informacji." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "Jaki rodzaj zgłoszenia ma zostać wysłany?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "Nieznany symptom" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "Symptom \"%s\" jest nieznany" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." @@ -694,37 +695,37 @@ "Po zamknięciu tej wiadomości, proszę kliknąć okno programu, aby zgłosić jego " "błąd." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "" "Nie udało się określić identyfikatora okna procesu przy użyciu programu xprop" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "%prog " -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "Określa nazwę pakietu" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "Dodaje dodatkową etykietę do zgłoszenia. Można użyć kilkukrotnie." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "%prog [opcje] [symptom|pid|scieżka_do_programu|plik .apport/.crash]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " @@ -734,20 +735,20 @@ "opcjonalnie --pid, lub tylko opcji --pid. Jeśli żadna opcja nie zostanie " "użyta, wyświetlona zostanie lista symptomów." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "Zgłasza błąd programu wskazanego kliknięciem w okno docelowe" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "" "Uruchomia w trybie aktualizacji zgłoszenia błędu. Można użyć z opcją --" "package." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" @@ -755,8 +756,8 @@ "Zgłasza błąd dotyczący symptomu (wymuszone jeśli podano nazwę symptomu jako " "parametr)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" @@ -764,8 +765,8 @@ "Określa nazwę pakietu w trybie zgłaszania błędu. Opcjonalne, jeśli użyto " "opcję --pid (wymuszone, jeśli podano nazwę pakietu jako parametr)." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " @@ -774,13 +775,13 @@ "Określa program w trybie zgłaszania błędu. Dodaje do zgłoszenia większą " "ilość informacji (pid jest podany jako jedyny parametr)." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "Podany pid to numer zawieszonej aplikacji." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " @@ -790,8 +791,8 @@ ".crash zamiast oczekujących w %s (wymuszone, jeśli określono plik jako " "parametr)." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " @@ -800,117 +801,117 @@ "Zapisuje informacje o błędzie do pliku, zamiast zgłaszać go. Raport zawarty " "w pliku, może być zgłoszony później z innego komputera." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "Wypisuje informacje o wersji" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "Analiza awarii w terminalu za pomocą apport-retrace" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "Rozpoczyna sesję gdb" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "Rozpoczęcie sesji gdb bez pobierania symboli debugowania" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "Aktualizacja %s z pomocą fully symbolic stack trace" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "Zgłoszenie błędu dotyczy programu, który nie jest już zainstalowany." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " "occurred." msgstr "Problem dotyczy programu %s, który został zmieniony od czasu awarii." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "" "To zgłoszenie o błędzie jest uszkodzone i nie może zostać przetworzone." #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "Zgłoszenie dotyczy niezainstalowanego pakietu." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "Wystąpił błąd podczas próby zgłoszenia błędu:" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "Nie można ustalić pakietu lub nazwy pakietu źródłowego." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "Nie można uruchomić przeglądarki internetowej" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "Nie można uruchomić przeglądarki internetowej, aby otworzyć %s." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "Proszę wprowadzić dane swojego konta w systemie śledzenia błędów %s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "Problem z siecią" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" "Nie można połączyć się z bazą danych awarii, proszę sprawdzić połączenie " "internetowe." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "Pamięć wyczerpana" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "" "System nie dysponuje wystarczającą ilością pamięci, aby przetworzyć raport " "błędu." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -921,14 +922,14 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "Błąd został już zgłoszony" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " @@ -938,8 +939,8 @@ "internetowej. Proszę sprawdzić, czy można dodać jakiekolwiek dalsze " "informacje, które mogą być pomocne twórcom programu." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "Programiści zostali już poinformowani o tym problemie. Dziękujemy!" --- apport-2.20.3.orig/po/pt.po +++ apport-2.20.3/po/pt.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:15+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:47+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: pt\n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr "" -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "" @@ -57,11 +57,11 @@ msgid "Ignore future problems of this program version" msgstr "" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "" @@ -69,21 +69,21 @@ msgid "_Examine locally" msgstr "" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "" @@ -99,9 +99,10 @@ "A informação está a ser recolhida para tentar ajudar os programadores a " "corrigir o problema relatado." +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "A enviar informações do problema" @@ -109,8 +110,8 @@ msgid "Uploading problem information" msgstr "A enviar informação sobre o problema" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -122,103 +123,103 @@ msgid "Apport crash file" msgstr "Ficheiro de crash do Apport" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "(dados binários)" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "" -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "" -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "" -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "Enviar o relatório do problema aos programadores?" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "" -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "" -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "" -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "" -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "" -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "" @@ -231,30 +232,31 @@ msgid "Destination directory exists and is not empty." msgstr "Directório de destino existe mas não está vazio" -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "A recolher informações sobre o problema" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." msgstr "" -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "" @@ -277,13 +279,13 @@ "Please enter your password to access problem reports of system programs" msgstr "" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "Relatar um problema..." -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "Reporte um mau funcionamento para os programadores" @@ -324,9 +326,8 @@ "detection" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "" @@ -336,18 +337,18 @@ msgid "Error: %s is not an executable. Stopping." msgstr "" -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "" "O seu sistema pode ficar instável agora e poderá necessitar de ser " "reiniciado." -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "" "Não colocar as novas análises no relatório, mas mostrá-las na saída padrão." -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" @@ -355,35 +356,35 @@ "Iniciar uma sessão interativa do gdb com o core dump do relatório (-o " "ignorado; não reescreve o relatório)" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" "Escreve o relatório modificado para um determinado ficheiro ao invés de " "alterar o relatório original" -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "" "Remove o core dump do relatório após a regeneração da análise da pilha" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "Substituir relatório CoreFile" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "Substituir relatório ExecutablePath" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "Substituir relatório ProcMaps" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "Reconstruir o relatório de informação do pacote" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -393,31 +394,31 @@ "be able to retrace crashes that happened on the currently running release." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " @@ -427,7 +428,7 @@ "erros. Isto é usado ao especificar a ID de erros para enviar os rastreios de " "erros rastreados (apenas se nem -g, -o, ou -s estarem especificados)" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." @@ -435,37 +436,37 @@ "Mostrar rastreios de erros rastreados e perguntar por confirmação antes de " "os enviar para a base de dados de erros." -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" "Caminho para a base de dados de duplicados sqlite (por omissão: sem " "verificação de duplicação)" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "" #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "OK para enviar estes como anexos? [y/n]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " "and try again." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -478,26 +479,26 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "programa desconhecido" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "Desculpe, o programa %s fechou inesperadamente" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "Problema em %s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." @@ -505,55 +506,55 @@ "O seu computador não tem memória livre suficiente para analisar " "automáticamente o problema e enviar um relatório para os programadores." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "Relatório do problema inválido" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "Você não tem autorização para aceder ao relatório deste problema." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "Erro" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "" "Não tem espaço livre suficiente no disco para processar este relatório." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "Nenhum pacote especificado" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "" "Deve especificar um pacote ou um PID. Veja --help para mais informações." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "Permissão negada" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." @@ -561,44 +562,44 @@ "O processo especificado não lhe pertence. Por favor execute este programa " "como dono do processo ou como \"root\"." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "PID inválido" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "O ID de processo especificado não pertence a um programa." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "O pacote %s não existe" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -606,8 +607,8 @@ "Please create a new report using \"apport-bug\"." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -619,67 +620,67 @@ "Do you really want to proceed?" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "Que tipo de problema quer reportar?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "Sintoma desconhecido" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "O sintoma \"%s\" não é conhecido" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" "%prog [opções] [sintoma|pid|pacote|caminho do programa|ficheiro " ".apport/.crash]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " @@ -689,18 +690,18 @@ "--pid, ou somente um --pid. Se nenhum é fornecido, mostra uma lista de " "sintomas conhecidos. (Automático se um único argumento é fornecido)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" @@ -708,8 +709,8 @@ "Submete um relatório de defeito sobre um sintoma. (Automático se um nome de " "sintoma é fornecido como único argumento)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" @@ -718,21 +719,21 @@ "especificado. (Automático se um nome de pacote é fornecido como único " "argumento)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " @@ -742,129 +743,129 @@ "arquivos pendentes em %s. (Automático se o arquivo é fornecido como único " "argumento)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " "machine." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "Imprime o número da versão do Apport" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "" "Este relatório de problema aplica-se a um programa que já não se encontra " "instalado." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " "occurred." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "" "Este relatório de problema está danificado e não pode ser processado." #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "O relatório pertence a um pacote que não está instalado." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "Não foi possível determinar o nome do pacote ou pacote fonte." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "Não é possível iniciar o navegador web" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "Não é possível iniciar o navegador web para abrir %s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "" "Por favor introduza a informação da sua conta para o sistema de " "gerenciamento de falhas %s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "Problema na rede" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" "Não é possível estabelecer a ligação à base de dados de falhas, por favor " "verifique a sua ligação à Internet." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "Exaustão da memória" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "" "O seu sistema não tem memória suficiente para processar o relatório desta " "paragem." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -875,14 +876,14 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "Problema já conhecido" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " @@ -892,8 +893,8 @@ "web. Por favor, verifique se poderá adicionar mais alguma informação que " "possa ser útil aos programadores." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "" --- apport-2.20.3.orig/po/pt_BR.po +++ apport-2.20.3/po/pt_BR.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:15+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:47+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: \n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "Apport" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr "Desculpe, ocorreu um erro interno." -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "Se você observar outros problemas, tente reiniciar o computador." @@ -57,11 +57,11 @@ msgid "Ignore future problems of this program version" msgstr "Ignorar problemas futuros desta versão do programa" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "Mostrar detalhes" @@ -69,21 +69,21 @@ msgid "_Examine locally" msgstr "_Examinar localmente" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "Deixe fechado" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "Continuar" @@ -99,9 +99,10 @@ "A informação que está sendo coletada pode ajudar os desenvolvedores a " "corrigir o problema que você relatou." +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "Enviando informações sobre o problema" @@ -109,8 +110,8 @@ msgid "Uploading problem information" msgstr "Enviando informações sobre o problema" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -122,103 +123,103 @@ msgid "Apport crash file" msgstr "Arquivo Apport falhou" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "(dados binários)" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "Desculpe, o aplicativo %s parou de funcionar inesperadamente." -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "Desculpe, %s fechou inesperadamente." -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "Desculpe, %s apresentou um erro interno." -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "Enviar o relatório do problema aos desenvolvedores?" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "Enviar" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "Forçar fechamento" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "Reexecutar" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "O aplicativo %s parou de responder." -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "O programa \"%s\" parou de responder." -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "Pacote: %s" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "Desculpe, ocorreu um problema durante a instalação do programa." -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "O aplicativo %s apresentou um erro interno." -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "O aplicativo %s foi fechado inesperadamente." -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "Ignorar futuros problemas deste tipo" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "Ocultar detalhes" @@ -231,24 +232,25 @@ msgid "Destination directory exists and is not empty." msgstr "Diretório de destino existe e não está vazio." -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "Nome de usuário:" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "Senha:" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "Coletando Informações sobre o Problema" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "Coletando informações sobre o problema" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." @@ -256,7 +258,7 @@ "As informações coletadas podem ser enviadas aos desenvolvedores para " "melhorar aplicativo. Isto pode demorar alguns minutos." -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "Enviando Informações sobre o Problema" @@ -283,13 +285,13 @@ "Por favor, informe sua senha para acessar os relatórios de problemas dos " "programas do sistema" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "Informar um problema..." -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "Relatar um mal-funcionamento aos desenvolvedores" @@ -339,9 +341,8 @@ "o executável sendo executado pela ferramenta de checagem de memória do " "valgrind para detecção de vazamento de memória" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "" @@ -353,18 +354,18 @@ msgid "Error: %s is not an executable. Stopping." msgstr "Erro: %s não é um executável. Interrompendo." -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "" "Seu sistema poderá se tornar instável agora e poderá ser necessário reiniciá-" "lo." -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "" "Não colocar as novas análises no relatório, mas mostrá-las na saída padrão." -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" @@ -372,35 +373,35 @@ "Iniciar uma sessão interativa do gdb com o core dump do relatório (-o " "ignorado; não reescreve o relatório)" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" "Escrever relatório modificado para determinado arquivo ao invés de alterar o " "relatório original" -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "" "Remove o core dump do relatório após a regeneração da análise da pilha" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "Sobrescrever os relatórios \"CoreFile\"" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "Sobrescrever os relatórios \"ExecutablePath\"" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "Sobrescrever os relatórios \"ProcMaps\"" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "Reconstruir o relatório de informação do pacote" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -417,27 +418,27 @@ "configuração do sistema, mas então será capaz de rastrear somente falhas que " "ocorreram na versão em execução no momento." -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" "Relatar progresso ao baixar/instalar durante instalação do pacotes na área " "local" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "Inserir hora antes das mensagens de registro, para operações em lote" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "Diretório de cache para pacotes baixados na área local" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." @@ -445,7 +446,7 @@ "Diretório para pacotes descompactados. Execuções futuras assumirão que " "qualquer pacote obtido via download também será extraído nesta área local." -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " @@ -456,7 +457,7 @@ "para carregar o rastreamento de pilha refeito (somente se não -g, -o, nem -s " "forem especificadas)" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." @@ -464,29 +465,29 @@ "Exibir rastreamentos de pilhas refeitos e pedir confirmação antes de enviá-" "los para o banco de dados de falhas." -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" "Caminho para o banco de dados de duplicados do SQLite (padrão: nenhuma " "verificação duplicação)" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "Você não pode usar -C sem -S. Interrompendo." #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "OK para enviar estes como anexos? [y / n]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "Este pacote não parece estar instalado corretamente" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " @@ -495,8 +496,8 @@ "Este não é um pacote oficial do %s. Por favor, remova qualquer pacote de " "terceiros e tente novamente." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -509,26 +510,26 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "programa desconhecido" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "Desculpe, o programa \"%s\" fechou inesperadamente" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "Problema em %s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." @@ -536,55 +537,55 @@ "Seu computador não possui memória suficiente para analisar automaticamente o " "problema e enviar um relatório aos desenvolvedores." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "Relatório do problema inválido" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "Você não tem permissão para acessar esse relatório de problema." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "Erro" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "Não há espaço suficiente em disco para processar este relatório." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "Nenhum pacote especificado" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "" "Você precisa especificar o pacote ou o PID. Veja --help para mais " "informações." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "Permissão negada" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." @@ -592,44 +593,44 @@ "O processo especificado não pertence a você. Por favor, execute este " "programa como dono do processo ou como usuário root." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "PID inválido" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "O ID do processo especificado não pertence a um programa." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "O script de sintoma %s não determinou um pacote afetado." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "O pacote %s não existe." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "Não foi possível criar o relatório" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "Atualizando o relatório de problema" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -640,8 +641,8 @@ "está duplicado ou já foi fechado.\n" "Por favor, crie um novo relatório utilizando o \"apport-bug\"" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -661,30 +662,30 @@ "\n" "Você realmente deseja continuar?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "Nenhuma informação adicional foi coletada." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "Que tipo de problema você deseja informar?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "Sintoma desconhecido" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "O sintoma \"%s\" não é conhecido." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." @@ -692,39 +693,39 @@ "Depois de fechar esta mensagem, por favor, clique na janela do aplicativo " "para relatar um problema sobre ele." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "xprop falhou ao determinar a ID do processo da janela" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "%prog " -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "Especificar o nome do pacote." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "" "Adicione um rótulo a mais ao relatório. Pode ser especificado várias vezes." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" "%prog [opções] [sintoma|pid|pacote|localização do programa|arquivo " ".apport/.crash]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " @@ -734,19 +735,19 @@ "pid, ou somente um --pid. Se nenhum é fornecido, mostra uma lista de " "sintomas conhecidos. (Automático se um único argumento é fornecido)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "Clique na janela como alvo para preencher um relatório de problema." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "" "Iniciar em modo de atualização de erro. Aceita o parâmetro --package." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" @@ -754,8 +755,8 @@ "Submete um relatório de bug sobre um sintoma. (Automático se um nome de " "sintoma é fornecido como único argumento)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" @@ -764,8 +765,8 @@ "especificado. (Automático se um nome de pacote é fornecido como único " "argumento)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " @@ -775,13 +776,13 @@ "relatório de erro conterá mais informações. (Implícito se pid for dado como " "único argumento.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "O pid fornecido é de uma aplicação pendente." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " @@ -791,8 +792,8 @@ "arquivos pendentes em %s. (Automático se o arquivo é fornecido como único " "argumento)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " @@ -802,46 +803,46 @@ "arquivo em vez de relatá-las. Esse arquivo pode ser reportado mais tarde ou " "de outra máquina." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "Imprimir o número da versão do Apport." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "" "Isto irá executar o apport-retrace em uma janela de Terminal para examinar a " "falha." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "Executar sessão gdb" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "Executar sessão gdb sem baixar símbolos de depuração" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "Atualizar %s com rastreamento de pilha totalmente simbólico" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "" "Este problema relatado se aplica a um programa que não está mais instalado." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " @@ -850,75 +851,75 @@ "O problema aconteceu com o programa %s que mudou desde que o problema " "ocorreu." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "Este relatório de erros está danificado e não pode ser processado." #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "O relatório pertence a um pacote que não está instalado." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "Um erro ocorreu ao tentar processar esse relatório de problema:" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "Não foi possível determinar o pacote ou nome do pacote fonte." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "Não é possível iniciar navegador web" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "Não é possível iniciar navegador web para abrir %s." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "" "Por favor digite as informações da sua conta para o sistema de monitoramento " "de falhas %s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "Problema na rede" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" "Não é possível conectar em uma base de dados quebrada, por favor verifique " "sua conexão com a internet." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "Memória exaurida" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "" "Seu sistema não tem memória o suficiente para processar este relatório de " "erro." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -929,14 +930,14 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "Problema já informado" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " @@ -946,8 +947,8 @@ "Por favor, verifique se você pode adicionar alguma informação adicional que " "possa ser útil aos desenvolvedores." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "O problema já foi reportado aos desenvolvedores. Obrigado!" --- apport-2.20.3.orig/po/ro.po +++ apport-2.20.3/po/ro.po @@ -14,16 +14,16 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:15+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:47+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: ro\n" "100 > 19) || ((n % 100 == 0) && (n != 0))) ? 2: 1))\n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "Apport" @@ -43,10 +43,10 @@ msgid "Sorry, an internal error happened." msgstr "A apărut o eroare internă." -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "Dacă întâmpinați alte probleme, încercați să reporniți calculatorul." @@ -60,11 +60,11 @@ msgstr "" "Ignoră viitoarele probleme apărute în versiunea curentă a programului" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "Arată detalii" @@ -72,21 +72,21 @@ msgid "_Examine locally" msgstr "_Examinează local" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "Păstrează închis" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "Continuă" @@ -102,9 +102,10 @@ "Se colectează informații care pot ajuta programatorii să remedieze problema " "pe care o raportați." +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "Se încarcă informațiile despre problemă" @@ -112,8 +113,8 @@ msgid "Uploading problem information" msgstr "Se trimit informațiile despre problemă" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -125,103 +126,103 @@ msgid "Apport crash file" msgstr "Fișier despre o avarie Apport" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "(date binare)" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "Ne pare rău, aplicația %s s-a oprit pe neașteptate." -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "%s s-a închis neașteptat." -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "%s a produs o eroare internă." -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "Trimiteți raportul problemei la programatori?" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "Trimite" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "Închidere forțată" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "Repornire" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "Aplicația %s nu mai răspunde." -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "Programul \"%s\" nu mai răspunde." -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "Pachet: %s" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "A apărut o problemă la instalarea programului." -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "Aplicația %s a întâmpinat o eroare internă." -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "Aplicația %s s-a închis neașteptat." -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "Ignoră viitoarele probleme de acest tip" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "Ascunde detaliile" @@ -234,24 +235,25 @@ msgid "Destination directory exists and is not empty." msgstr "Dosarul destinație există și nu este gol." -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "Nume utilizator:" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "Parolă" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "Se colectează informațiile problemei" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "Se colectează informațiile problemei" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." @@ -259,7 +261,7 @@ "Informațiile colectate pot fi trimise dezvoltatorilor pentru a îmbunătății " "aplicația. Acest lucru poate dura câteva minute." -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "Se încarcă informațiile problemei" @@ -286,13 +288,13 @@ "Pentru a accesa rapoartele despre problemele cu programele sistemului " "trebuie să vă introduceți parola" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "Raportează o problemă..." -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "Raportează o eroare programatorilor" @@ -344,9 +346,8 @@ "executabilul care este rulat sub utilitarul valgrind pentru verificarea " "pierderilor de memorie" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "" @@ -358,17 +359,17 @@ msgid "Error: %s is not an executable. Stopping." msgstr "Eroare: %s nu este un fișier executabil. Se oprește." -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "" "Sistemul poate deveni instabil după acest pas și s-ar putea să trebuiască " "repornit." -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "Nu include noile trasări în raport, ci scrie-le la stdout." -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" @@ -376,35 +377,35 @@ "Pornește o sesiune gdb interactivă cu fișierul core dump din raport (-o " "ignorat; nu va rescrie raportul)" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" "Scrie raportul modificat într-un fișier dat în loc de a schimba raportul " "original" -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "" "Șterge core-dump-ul din raport după regenerarea trasării stivei apelurilor" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "Înlocuiește CoreFile din raport" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "Înlocuiește ExecutablePath din raport" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "Înlocuiește ProcMaps din raport" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "Reconstruiește informațiile despre pachet din raport" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -421,28 +422,28 @@ "de configurare ale sistemului, însă în acest mod vor putea fi urmărite numai " "erorile apărute în versiunea curentă." -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" "Arată progresul descărcării/instalării pentru instalarea pachetelor în zona " "protejată" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "" "Adaugă marcaje de timp mesajelor din jurnale, pentru operații în bloc" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "Dosarul cache pentru pachetele descărcate în zona protejată" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." @@ -451,7 +452,7 @@ "presupune că orice pachet deja descărcat este, de asemenea, extras în acest " "dosar izolat." -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " @@ -462,7 +463,7 @@ "pentru a trimite trasările de stivă de apeluri retrasate (doar dacă niciuna " "dintre -g, -o și -s nu au fost specificate)" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." @@ -470,29 +471,29 @@ "Afișează trasările de stivă de apeluri retrasate și cere confirmarea înainte " "de a le trimite în baza de date despre avarii." -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" "Calea către baza de date sqlite duplicată (implicit: fără verificarea " "duplicatelor)" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "Nu puteți utiliza -C fără -S. Se oprește." #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "Se trimit aceste atașamente? [y/n]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "Se pare că acest pachet nu este instalat corect" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " @@ -501,8 +502,8 @@ "Acesta nu este un pachet oficial %s. Ștergeți toate pachetele de la terți și " "încercați din nou." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -515,26 +516,26 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "program necunoscut" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "Ne cerem scuze, programul „%s” s-a întrerupt într-un mod neașteptat" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "Problemă în %s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." @@ -542,56 +543,56 @@ "Calculatorul dumneavoastră nu dispune de suficientă memorie pentru a analiza " "automat problema și a trimite un raport despre eroare programatorilor." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "Raport de probleme nevalid" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "Accesul la raport nu vă este permis." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "Eroare" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "" "Nu există suficient spațiu disponibil pe disc pentru a procesa acest raport." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "Nu s-a specificat nici un pachet" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "" "Trebuie să specificați un pachet sau un PID. Pentru mai multe informații " "consultați --help." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "Permisiune refuzată" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." @@ -599,44 +600,44 @@ "Procesul selectat nu aparține acestui utilizator. Executați acest program în " "calitate de proprietar al procesului sau de utilizator „root”." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "PID nevalid" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "Identificatorul de proces specificat nu aparține unui program." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "Scriptul pentru simptome %s, nu a detectat niciun pachet afectat" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "Pachetul %s nu există" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "Raportul nu poate fi creat" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "Se actualizează raportul de probleme" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -648,8 +649,8 @@ "\n" "Creați un nou raport, utilizând „apport-bug”." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -670,30 +671,30 @@ "\n" "Sigur doriți să continuați?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "Nu au fost colectate informații suplimentare." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "Ce fel de problemă doriți să raportați?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "Simptom necunoscut" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "Simptomul „%s” nu este cunoscut." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." @@ -701,39 +702,39 @@ "După închiderea acestui mesaj faceți clic pe fereastra unei aplicații pentru " "a raporta o problemă despre ea." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "xprop nu a reușit să determine ID-ul de proces al ferestrei" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "%prog " -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "Specificați numele pachetului." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "" "Adăugă o etichetă suplimentară raportului. Pot fi specificate mai multe " "etichete." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" "%prog [opțiuni] [fișier simptom|pid|pachet|program cale|.apport/.crash]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " @@ -744,20 +745,20 @@ "este prezent, atunci afișează o listă de simptome cunoscute. (Implicit, dacă " "se transmite un singur argument)." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "Clic pe o fereastră pentru a raporta o problemă despre aceasta." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "" "Pornește în modul de actualizare a defecțiunii. Poți lua un --package " "opțional." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" @@ -765,8 +766,8 @@ "Trimite un raport de defecțiune despre un simptom. (Implicit, dacă numele " "simptomului este dat ca singurul argument.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" @@ -775,8 +776,8 @@ "este specificat. (Implicit dacă numele pachetului este dat ca singurul " "argument)." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " @@ -786,13 +787,13 @@ "acest lucru este specificat, raportul de eroare va conține mai multe " "informații. (Opțiune implicită dacă PID este unicul argument.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "PID-ul furnizat identifică o aplicație care nu mai răspunde." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " @@ -801,8 +802,8 @@ "Raportează avaria din fișierul .apport sau .crash și nu a celor în așteptare " "din %s. (Implicit, dacă fișierul este dat ca singurul argument.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " @@ -812,45 +813,45 @@ "fișier, în loc de a le raporta. Acest fișier poate fi apoi raportat mai " "târziu de pe o altă mașină." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "Tipărește numărul de versiune al Apport." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "" "Această comandă va lansa apport-retrace într-o fereastră terminal pentru a " "examina eroarea." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "Rulare sesiune gdb" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "Rulați o sesiune gdb fără descărcarea simbolurilor pentru depanare" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "Actualizați %s cu urmărirea întregii stive" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "Acest raport se referă la un program care nu mai este instalat." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " @@ -859,76 +860,76 @@ "Problema a apărut la programul %s, care a fost modificat față de momentul " "apariției erorii." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "Acest raport de probleme este deteriorat și nu poate fi procesat." #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "Raportul aparține de un pachet care nu este instalat." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "" "A apărut o eroare în încercarea de a procesa raportarea acestei probleme:" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "Numele pachetului sau al pachetului sursă nu a putut fi determinat." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "Nu s-a putut porni navigatorul web" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "Nu s-a putut porni navigatorul web pentru a deschide %s." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "" "Introduceți informațiile despre cont pentru sistemul de monitorizare a " "defecțiunilor %s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "Problemă de rețea" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" "Nu s-a reușit conexiunea la baza de date despre avarii, verificați " "conexiunea la internet." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "Memorie consumată" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "" "Sistemul nu dispune de suficientă memorie pentru a procesa acest raport de " "avarie." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -939,14 +940,14 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "Problemă deja cunoscută" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " @@ -956,8 +957,8 @@ "navigatorul web. Verificați dacă puteți adăuga informații suplimentare care " "ar putea fi utile programatorilor." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "Această problemă a fost raportată deja dezvoltatorilor. Vă mulțumim!" --- apport-2.20.3.orig/po/ru.po +++ apport-2.20.3/po/ru.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:15+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:47+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: ru\n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "Apport" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr "Извините, возникла внутренняя ошибка." -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "" "При возникновении этой неполадки в дальнейшем попробуйте перезапустить " @@ -59,11 +59,11 @@ msgid "Ignore future problems of this program version" msgstr "Игнорировать будущие сбои в этой версии программы" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "Показать подробности" @@ -71,21 +71,21 @@ msgid "_Examine locally" msgstr "_Локальная проверка" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "Оставить закрытым" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "Продолжить" @@ -101,9 +101,10 @@ "Производится сбор информации, которая может помочь разработчикам исправить " "эту ошибку." +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "Передача информации о неполадке" @@ -111,8 +112,8 @@ msgid "Uploading problem information" msgstr "Передача сведений о неполадке" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -124,104 +125,104 @@ msgid "Apport crash file" msgstr "Файл отчета Apport" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "(двоичные данные)" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "Извините, приложение %s внезапно завершилось." -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "Извините, %s было непредвиденно закрыто." -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "Извините, возникла внутренняя ошибка %s." -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "Отправить отчёт об ошибке разработчикам?" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "Отправить" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "Принудительное завершение" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "Перезапустить" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "Приложение «%s» перестало отвечать." -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "Программа «%s» перестала отвечать." -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "Пакет: %s" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "" "Извините, обнаружена неполадка во время установки программного обеспечения." -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "В приложении %s произошла внутренняя ошибка." -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "Приложение %s внезапно закрылось." -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "Игнорировать этот тип неполадок в дальнейшем" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "Скрыть подробности" @@ -234,24 +235,25 @@ msgid "Destination directory exists and is not empty." msgstr "Папка назначения существует и не пуста." -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "Имя пользователя:" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "Пароль:" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "Сбор информации о неполадке" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "Сбор информации о проблеме" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." @@ -259,7 +261,7 @@ "Собранную информацию можно отправить разработчикам чтобы улучшить " "приложение. Это может занять несколько минут." -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "Передача информации о неполадке" @@ -285,13 +287,13 @@ msgstr "" "Введите свой пароль для доступа к отчётам об ошибках в системных программах" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "Сообщить о неполадке..." -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "Сообщить о недоработке разработчикам" @@ -341,9 +343,8 @@ "исполняемый файл, который запускается под контролем valgrind memcheck для " "определения утечек памяти" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "" @@ -355,16 +356,16 @@ msgid "Error: %s is not an executable. Stopping." msgstr "Ошибка: %s — не исполняемый файл. Остановка." -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "Система может стать нестабильной, возможно потребуется перезагрузка." -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "" "Не добавлять новые трассировки в отчет, а посылать на стандартный вывод." -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" @@ -372,33 +373,33 @@ "Запустить интерактивный сеанс gdb с дампом ядра из отчёта (-o игнорируется; " "отчёт не перезаписывается)" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" "Сохранить измененный отчет в файл вместо изменения оригинального отчета" -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "Удалить дамп ядра из отчёта после восстановления трассировки стека" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "Заменить CoreFile в отчёте" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "Заменить ExecutablePath в отчёте" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "Заменить ProcMaps в отчёте" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "Заново построить информацию о пакетах в отчёте" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -415,29 +416,29 @@ "обнаружения аварийных ситуаций, произошедших в выпуске системы, работающем в " "данный момент." -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" "Сообщать о ходе выполнения загрузки/установки пакетов во временную среду" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "" "Добавлять временные отметки до сообщений в журнале, для групповых операций" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" "Создавать и использовать сторонние репозитории из источников, указанных в " "отчётах" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "Папка для сохранения пакетов, загружаемых во временную среду" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." @@ -445,7 +446,7 @@ "Директория для распаковки пакетов. При последующих запусках все уже " "загруженные пакеты будут распаковываться в это изолированное окружение." -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " @@ -455,7 +456,7 @@ "при указании ID сбоя для отправки трассировок стека (только когда -g, -o или " "-s не указаны)" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." @@ -463,28 +464,28 @@ "Отобразить трассировки и запросить подтверждение перед их отправкой в базу " "данных сбоев." -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" "Путь к дублирующей базе данных sqlite (по умолчанию: без проверки дубликатов)" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "Нельзя использовать -C без -S. Остановка." #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "Отправить эти приложения? [y/n]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "Возможно, этот пакет установлен неправильно" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " @@ -493,8 +494,8 @@ "Этот пакет не является официальным пакетом %s. Пожалуйста, удалите все " "сторонние пакеты и попробуйте снова." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -507,26 +508,26 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "неизвестная программа" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "Извините, программа %s аварийно завершила свою работу" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "Неполадка в %s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." @@ -534,55 +535,55 @@ "В вашем компьютере недостаточно свободной памяти, чтобы автоматически " "проанализировать неполадку и отправить отчет разработчикам." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "Неверный отчёт об ошибке" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "У вас нет доступа к отчёту о неполадке." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "Ошибка" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "Недостаточно места на диске для обработки этого отчёта." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "Не указан пакет" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "" "Необходимо указать пакет или PID. Запустите программу с ключом --help для " "получения дополнительной информации." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "В доступе отказано" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." @@ -590,44 +591,44 @@ "Указанный процесс запущен другим пользователем. Запустите эту программу с " "правами владельца процесса или администратора системы." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "Неверный PID" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "Указанный PID принадлежит другому процессу." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "Симптоматический скрипт %s не может определить затронутый пакет" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "Пакет %s не существует" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "Невозможно создать отчет" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "Обновление отчета о проблеме" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -637,8 +638,8 @@ "Вы не являетесь отправителем или получателем отчета об этой проблеме, " "возможно отчет уже существует или уже был закрыт." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -659,30 +660,30 @@ "\n" "Вы действительно хотите продолжить?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "Дополнительная информация не была собрана." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "О какой проблеме вы бы хотели сообщить?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "Неизвестный симптом" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "Симптом «%s» не известен" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." @@ -690,38 +691,38 @@ "После закрытия этого сообщения, пожалуйста, щелкните по окну приложения, " "чтобы сообщить о проблеме." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "xprop не удалось определить ID процесса этого окна" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "%prog <номер отчета>" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "Задайте имя пакета." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "" "Добавить дополнительный тег в отчет. Может быть указан несколько раз." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" "%prog [параметры] [признак|pid|пакет|путь до программы|.apport/.crash файл]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " @@ -732,20 +733,20 @@ "отображает список известных симптомов. (Применяется, когда передан " "единственный аргумент.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "Щелкните по целевому окну для заполнения отчёта о проблеме." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "" "Запустить в режиме обновления ошибки. Может принимать дополнительный ключ --" "package." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" @@ -753,8 +754,8 @@ "Отправить отчёт об ошибке с симптомом. (Применяется, когда название симптома " "передано в качестве единственного параметра.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" @@ -762,8 +763,8 @@ "Указать имя пакета в режиме --file-bug. Необязательно, если указан --pid. " "(Применяется, когда имя пакета передано в качестве единственного параметра.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " @@ -773,13 +774,13 @@ "отчет будет содержать больше информации. (Подразумевается, что pid — " "единственный указанный аргумент.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "Указанный идентификатор принадлежит процессу, который не отвечает." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " @@ -789,8 +790,8 @@ "ожидаемых в %s. (Применяется, когда файл передан в качестве единственного " "параметра.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " @@ -799,45 +800,45 @@ "При работе в режиме отправки отчета, сохраняет информацию в файле вместо ее " "отправки. Этот файл можно будет отправить позднее или с другого компьютера." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "Напечатать номер версии Apport." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "" "Будет произведён запуск «apport-retrace» в окне терминала для выполнения " "проверки аварийного завершения работы." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "Запустить сеанс gdb" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "Запустить сеанс gdb, не выполняя загрузку отладочных символов" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "Обновить %s с полным отслеживанием символического стека" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "Этот отчет о проблеме относится к программе, которая не установлена." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " @@ -846,72 +847,72 @@ "Неполадка произошла с программой %s, в которую были внесены изменения с " "момента её аварийного завершения работы." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "Этот отчёт о неполадке повреждён и не может быть обработан." #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "Отчёт относится к пакету, который не был установлен." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "Произошла ошибка при попытке обработать это сообщение о неполадке:" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "Не удалось определить имя пакета или имя пакета с исходным кодом." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "Не удалось запустить веб-браузер" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "Не удалось запустить веб-браузер, чтобы открыть %s." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "" "Пожалуйста, введите данные вашей учетной записи в системе учёта ошибок %s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "Неполадка с сетью" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" "Не удается подключиться к базе данных по сбоям, пожалуйста, проверьте " "подключение к Интернету." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "Недостаток памяти" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "В системе недостаточно памяти для обработки этого отчёта об ошибке." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -922,14 +923,14 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "О неполадке уже известно" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " @@ -939,8 +940,8 @@ "браузере. Пожалуйста, проверьте, можете ли вы добавить в него иную полезную " "информацию, которая могла бы помочь разработчикам." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "" "Сообщение о неисправности отправлено разработчикам. Спасибо за помощь!" --- apport-2.20.3.orig/po/sc.po +++ apport-2.20.3/po/sc.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:15+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:47+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: sc\n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr "" -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "" @@ -57,11 +57,11 @@ msgid "Ignore future problems of this program version" msgstr "" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "" @@ -69,21 +69,21 @@ msgid "_Examine locally" msgstr "" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "" @@ -97,9 +97,10 @@ "you report." msgstr "" +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "" @@ -107,8 +108,8 @@ msgid "Uploading problem information" msgstr "" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -118,103 +119,103 @@ msgid "Apport crash file" msgstr "" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "" -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "" -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "" -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "" -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "" -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "" -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "" -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "" -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "" @@ -227,30 +228,31 @@ msgid "Destination directory exists and is not empty." msgstr "" -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." msgstr "" -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "" @@ -273,13 +275,13 @@ "Please enter your password to access problem reports of system programs" msgstr "" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "" -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "" @@ -320,9 +322,8 @@ "detection" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "" @@ -332,46 +333,46 @@ msgid "Error: %s is not an executable. Stopping." msgstr "" -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -381,72 +382,72 @@ "be able to retrace crashes that happened on the currently running release." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " "neither -g, -o, nor -s are specified)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "" #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " "and try again." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -455,121 +456,121 @@ "%s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -577,8 +578,8 @@ "Please create a new report using \"apport-bug\"." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -590,230 +591,230 @@ "Do you really want to proceed?" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " "a single argument is given.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " "ones in %s. (Implied if file is given as only argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " "machine." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " "occurred." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "" #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -821,22 +822,22 @@ "%s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " "helpful for the developers." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "" --- apport-2.20.3.orig/po/se.po +++ apport-2.20.3/po/se.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:15+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:47+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: se\n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "Apport" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr "" -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "" @@ -57,11 +57,11 @@ msgid "Ignore future problems of this program version" msgstr "" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "Čájet bienaid" @@ -69,21 +69,21 @@ msgid "_Examine locally" msgstr "" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "Joatkke" @@ -97,9 +97,10 @@ "you report." msgstr "" +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "" @@ -107,8 +108,8 @@ msgid "Uploading problem information" msgstr "" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -118,103 +119,103 @@ msgid "Apport crash file" msgstr "" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "(binára dáhtaid)" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "" -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "" -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "" -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "Sádde" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "" -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "" -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "Páhkka: %s" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "" -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "" -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "" -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "Čiega &bienaid" @@ -227,30 +228,31 @@ msgid "Destination directory exists and is not empty." msgstr "" -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "Geavaheaddjinamma:" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "Beassansátni:" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." msgstr "" -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "" @@ -273,13 +275,13 @@ "Please enter your password to access problem reports of system programs" msgstr "" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "" -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "" @@ -320,9 +322,8 @@ "detection" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "" @@ -332,46 +333,46 @@ msgid "Error: %s is not an executable. Stopping." msgstr "" -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -381,72 +382,72 @@ "be able to retrace crashes that happened on the currently running release." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " "neither -g, -o, nor -s are specified)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "" #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " "and try again." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -455,121 +456,121 @@ "%s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "Meattáhus" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "Ii beasa deikke" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -577,8 +578,8 @@ "Please create a new report using \"apport-bug\"." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -590,230 +591,230 @@ "Do you really want to proceed?" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " "a single argument is given.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " "ones in %s. (Implied if file is given as only argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " "machine." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " "occurred." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "" #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -821,22 +822,22 @@ "%s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " "helpful for the developers." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "" --- apport-2.20.3.orig/po/shn.po +++ apport-2.20.3/po/shn.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:15+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:47+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: shn\n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr "" -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "" @@ -57,11 +57,11 @@ msgid "Ignore future problems of this program version" msgstr "" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "" @@ -69,21 +69,21 @@ msgid "_Examine locally" msgstr "" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "" @@ -97,9 +97,10 @@ "you report." msgstr "" +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "" @@ -107,8 +108,8 @@ msgid "Uploading problem information" msgstr "" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -118,103 +119,103 @@ msgid "Apport crash file" msgstr "" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "" -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "" -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "" -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "" -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "" -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "" -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "" -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "" -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "" @@ -227,30 +228,31 @@ msgid "Destination directory exists and is not empty." msgstr "" -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." msgstr "" -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "" @@ -273,13 +275,13 @@ "Please enter your password to access problem reports of system programs" msgstr "" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "" -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "" @@ -320,9 +322,8 @@ "detection" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "" @@ -332,46 +333,46 @@ msgid "Error: %s is not an executable. Stopping." msgstr "" -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -381,72 +382,72 @@ "be able to retrace crashes that happened on the currently running release." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " "neither -g, -o, nor -s are specified)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "" #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " "and try again." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -455,121 +456,121 @@ "%s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -577,8 +578,8 @@ "Please create a new report using \"apport-bug\"." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -590,230 +591,230 @@ "Do you really want to proceed?" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " "a single argument is given.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " "ones in %s. (Implied if file is given as only argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " "machine." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " "occurred." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "" #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -821,22 +822,22 @@ "%s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " "helpful for the developers." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "" --- apport-2.20.3.orig/po/si.po +++ apport-2.20.3/po/si.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:15+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:47+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: \n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr "" -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "" @@ -57,11 +57,11 @@ msgid "Ignore future problems of this program version" msgstr "" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "විස්තර පෙන්වන්න" @@ -69,21 +69,21 @@ msgid "_Examine locally" msgstr "" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "වසා තබන්න" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "ඉදිරියට යන්න" @@ -97,9 +97,10 @@ "you report." msgstr "" +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "" @@ -107,8 +108,8 @@ msgid "Uploading problem information" msgstr "" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -118,103 +119,103 @@ msgid "Apport crash file" msgstr "" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "(ද්ව්‍යංගී දත්ත)" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "" -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "" -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "" -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "යවන්න" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "යළි දියත් කරන්න" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "" -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "" -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "පැකේජය: %s" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "" -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "" -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "" -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "තොරතුරු සඟවන්න" @@ -227,30 +228,31 @@ msgid "Destination directory exists and is not empty." msgstr "" -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "පරිශීලක නාමය:" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "මුරපදය:" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." msgstr "" -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "" @@ -273,13 +275,13 @@ "Please enter your password to access problem reports of system programs" msgstr "" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "" -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "" @@ -320,9 +322,8 @@ "detection" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "" @@ -332,46 +333,46 @@ msgid "Error: %s is not an executable. Stopping." msgstr "" -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -381,72 +382,72 @@ "be able to retrace crashes that happened on the currently running release." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " "neither -g, -o, nor -s are specified)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "" #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " "and try again." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -455,121 +456,121 @@ "%s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "නොදන්නා වැඩසටහන" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "සමාවෙන්න, \"%s\" වැඩසටහන අනපේක්ෂිතව අවසන්විය" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "%s හි ගැටලුවක්" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "අවලංගු ගැටලුවක් වාර්තාවිනි" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "දෝෂය" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "අවසර දීමට නොහැක" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -577,8 +578,8 @@ "Please create a new report using \"apport-bug\"." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -590,230 +591,230 @@ "Do you really want to proceed?" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " "a single argument is given.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " "ones in %s. (Implied if file is given as only argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " "machine." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " "occurred." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "" #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -821,22 +822,22 @@ "%s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " "helpful for the developers." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "" --- apport-2.20.3.orig/po/sk.po +++ apport-2.20.3/po/sk.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:15+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:47+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: sk\n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr "Prepáčte, nastala vnútorná chyba." -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "Ak zaznamenáte ďalšie problémy, skúste reštartovať počítač." @@ -57,11 +57,11 @@ msgid "Ignore future problems of this program version" msgstr "Ignorovať budúce problémy tejto verzie programu" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "Zobraziť podrobnosti" @@ -69,21 +69,21 @@ msgid "_Examine locally" msgstr "" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "Ponechať zatvorené" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "Pokračovať" @@ -99,9 +99,10 @@ "Zhromažďujú sa údaje pre vývojárov potrebné na opravu vami ohláseného " "problému." +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "Nahrávam informácie o probléme" @@ -109,8 +110,8 @@ msgid "Uploading problem information" msgstr "Nahrávajú sa informácie o probléme" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -122,103 +123,103 @@ msgid "Apport crash file" msgstr "" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "(binárne dáta)" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "Prepáčte, aplikácia %s bola neočakávane ukončená." -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "Prepáčte, %s bol neočakávane ukončený." -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "Prepáčte, %s zaznamenal vnútornú chybu." -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "Odoslať hlásenie o chybe vývojárom?" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "Odoslať" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "Znova spustiť" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "Aplikácia %s neodpovedá." -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "Program „%s“ neodpovedá." -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "Balík: %s" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "Prepáčte, pri inštalácii softvéru sa vyskytla chyba." -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "V aplikácii %s došlo k chybe." -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "Aplikácia %s bola neočakávane ukončená." -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "Ignorovať budúce problémy tohto typu" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "Skryť podrobnosti" @@ -231,30 +232,31 @@ msgid "Destination directory exists and is not empty." msgstr "" -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "Získavajú sa údaje o probléme" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." msgstr "" -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "" @@ -279,13 +281,13 @@ "Please enter your password to access problem reports of system programs" msgstr "" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "Ohlásiť problém..." -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "Oznámiť nefunkčnosť vývojárom" @@ -326,9 +328,8 @@ "detection" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "" @@ -338,46 +339,46 @@ msgid "Error: %s is not an executable. Stopping." msgstr "" -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -387,64 +388,64 @@ "be able to retrace crashes that happened on the currently running release." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " "neither -g, -o, nor -s are specified)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "" #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "Vyzerá to tak, že tento balík nie je nainštalovaný korektne" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " @@ -453,8 +454,8 @@ "Toto nie je oficiálny %s balík. Prosím, odstráňte všetky balíky tretích " "strán a skúste to znovu." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -467,26 +468,26 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "neznámy program" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "Prepáčte, program \"%s\" neočakávane skončil" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "Problém v %s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." @@ -494,54 +495,54 @@ "Váš počítač nemá dosť voľnej pamäte na automatickú analýzu problému a " "poslanie správy vývojárom." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "Neplatná správa problému" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "Nemáte povolený prístup k tejto správe o probléme." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "Chyba" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "Nie je dostatok voľného miesta na disku na spracovanie tejto správy." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "Nebol určený žiadny balík" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "" "Je potrebné určiť balík alebo PID. Pozrite --help pre viac informácií." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "Prístup odmietnutý" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." @@ -549,44 +550,44 @@ "Nemáte dosah na označený proces. Prosím spustite program ako jeho vlastník, " "alebo ako superpoužívateľ." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "Neplatné PID" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "Špecifikované ID procesu nepatrí k programu." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "Balík %s neexistuje" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -594,8 +595,8 @@ "Please create a new report using \"apport-bug\"." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -607,30 +608,30 @@ "Do you really want to proceed?" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "Aký druh problému chcete nahlásiť?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "Neznámy príznak" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "Príznak \"%s\" nie je známy" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." @@ -638,37 +639,37 @@ "Pre nahlásenie problému s aplikáciou kliknite, prosím, po zavretí tejto " "správy na okno aplikácie." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "xprop nedokázal zistiť identifikátor procesu okna" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "Zadajte názov balíka." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "Pridať k hláseniu značku navyše. Môže byť zadaná viackrát." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " @@ -678,18 +679,18 @@ "alebo len --pid. Ak nie je zadaný ani jeden z nich, zobrazí sa zoznam " "známych príznakov. (Predpokladané ak je zadaný len jeden argument.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "Kliknite na okno ktoré bude cieľom pre vyplnenia hlásenia o chybe." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" @@ -697,8 +698,8 @@ "Vytvorte chybovú správu o príznaku. (Predpokladané ak je zadané ako jediný " "argument meno príznaku.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" @@ -706,8 +707,8 @@ "Zadajte meno balíka v móde --file-bug. Je to voliteľné ak je zadaný --pid. " "(Predpokladané ak je zadané ako jediný argument meno.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " @@ -717,13 +718,13 @@ "hlásenie obsahovať viac informácií. (Ak je číslo procesu uvedené ako jediný " "argument.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "Poskytnutý pid je zamrznutá aplikácia." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " @@ -732,125 +733,125 @@ "Nahláste pád z daného .apport alebo .crash súboru namieste prebiehajúcich v " "%s. (Predpokladané ak je zadaný ako jediný argument súbor.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " "machine." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "Vytlačiť verziu Apport." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "Spustiť gdb reláciu" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "Spustiť gdb reláciu bez sťahovania ladiacich symbolov" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "" "Táto chybová správa sa vzťahuje na program, ktorý už nie je nainštalovaný." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " "occurred." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "Táto správa je poškodená a nie je možné ju spracovať." #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "Správa patrí k balíku, ktorý nie je nainštalovaný." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "Nastala chyba počas spracovania hlásenia o chybe:" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "Nedá sa zistiť balík alebo zdrojový názov balíka." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "Nepodarilo sa spustiť internetový prehliadač" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "Nepodarilo sa spustiť internetový prehliadač pre otvorenie %s." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "" "Prosím zadajte vaše informácie o prihlasovacom účte pre Systém sledovanie " "chýb %s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "Problém siete" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" "Nie je možné sa pripojiť do databázy pádov, prosím skontrolujte vaše " "internetové pripojenie." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "Vyčerpanie pamäte" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "Váš systém nemá dostatočnú pamäť na spracovanie chybovej správy." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -861,14 +862,14 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "Problém je už známy" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " @@ -878,8 +879,8 @@ "prehliadači. Skontrolujte prosím, či môžete doplniť ďaľšie informácie, ktoré " "môžu byť nápomocné pre vývojárov." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "Tento problém bol už nahlásený vývojárom. Ďakujeme!" --- apport-2.20.3.orig/po/sl.po +++ apport-2.20.3/po/sl.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:15+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:47+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: sl\n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "Apport" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr "Oprostite, prišlo je do notranje napake." -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "" "Če opazite nadaljnje težave, poskusite s ponovnim zagonom računalnika." @@ -58,11 +58,11 @@ msgid "Ignore future problems of this program version" msgstr "Prezri nadaljnje težave te različice programa" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "Pokaži podrobnosti" @@ -70,21 +70,21 @@ msgid "_Examine locally" msgstr "_Preuči krajevno" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "Pusti zaprto" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "Nadaljuj" @@ -100,9 +100,10 @@ "Zbirajo se podatki, ki bi lahko pomagali razvijalcem popraviti težavo, ki " "ste jo prijavili." +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "Pošiljajo se podatki o težavi" @@ -110,8 +111,8 @@ msgid "Uploading problem information" msgstr "Pošiljanje podatkov o nastali težavi" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -123,103 +124,103 @@ msgid "Apport crash file" msgstr "Datoteka poročila o sesutju" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "(binarni podatki)" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "Oprostite, program %s se je nepričakovano končal." -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "Oprostite, program %s se je nepričakovano zaprl." -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "Oprostite, v programu %s je prišlo do notranje napake." -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "Ali želite poročilo o napaki poslati razvijalcem?" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "Pošlji" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "Prisili končanje" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "Znova zaženi" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "Program %s se ne odziva." -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "Program \"%s\" se ne odziva." -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "Paket: %s" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "Med nameščanjem programa je prišlo do napake." -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "V programu %s je prišlo do notranje napake." -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "Program %s se je nepričakovano zaprl." -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "Prezri prihodnje težave te vrste" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "Skrij podrobnosti" @@ -232,24 +233,25 @@ msgid "Destination directory exists and is not empty." msgstr "Ciljna mapa ne obstaja ali pa ni prazna." -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "Uporabniško ime:" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "Geslo:" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "Zbiranje podrobnosti o težavi" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "Zbiranje podatkov o napaki" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." @@ -257,7 +259,7 @@ "Zbrane podatke lahko pošljete razvijalcem za izboljšanje programa. To lahko " "vzame nekaj minut." -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "Pošiljanje podrobnosti o težavah" @@ -282,13 +284,13 @@ msgstr "" "Vnesite svoje geslo za dostop do poročil o težavah s sistemskimi programi" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "Pošlji poročilo o težavi ..." -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "Poročajte napačno delovanje razvijalcem" @@ -337,9 +339,8 @@ "izvedljiva datoteka, ki teče pod orodjem pregledovalnikom pomnilnika " "valgrind za zaznavanje puščanja pomnilnika" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "Namesti dodaten paket v peskovnik (lahko je določeno večkrat)" @@ -349,16 +350,16 @@ msgid "Error: %s is not an executable. Stopping." msgstr "Napaka: %s ni izvedljiva datoteka. Ustavljanje." -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "" "Vaš sistem lahko postane nestabilen in ga bo morda treba znova zagnati." -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "Ne dajaj novih sledi v poročilo temveč jih izpiši v stdout." -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" @@ -366,33 +367,33 @@ "Prični vzajemno sejo gdb z izpisom jedra poročila (-o prezrt; ne prepiše " "poročila)" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" "Zapiše spremenjeno poročilo v dano datoteko namesto spreminjanja izvirnega" -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "Odstrani izpis jedra iz poročila po ponovni izgradnji sledi sklada" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "Prepiši jedrno datoteko poročila" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "Prepiši izvedljivo pot poročila" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "Prepiši ProcMap poročila" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "Znova izgradi podatke o paketih v poročilu" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -408,28 +409,28 @@ "uporabil sistemske nastavitvene datoteke, vendar boste lahko ponovno sledili " "sesutjem, ki se zgodijo na trenutno izvajajoči se izdaji." -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" "Poročaj o napredku prejema/namestitve med nameščanje paketov v peskovnik" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "Pripni časovne žige sporočilom dnevnika za paketna opravila" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" "Ustvarite in uporabite skladišča tretjih oseb iz izvorov določenih v " "poročilih" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "Mapa predpomnilnika za pakete prejete v peskovnik" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." @@ -437,7 +438,7 @@ "Imenik nepakiranih paketov. Naslednji zagoni programa bodo zagotovili, da se " "bodo vsi prejeti paketi razširjali v ta peskovnik." -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " @@ -447,7 +448,7 @@ "uporabljeno ob navedbi ID sesutja za pošiljanje znova načrtanih sledi " "skladov (samo, če -g, -o in -s niso navedeni)" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." @@ -455,29 +456,29 @@ "Prikaži znova narčrtane sledi sklada in vprašaj za potrditev pred njihovim " "pošiljanjem v podatkovno zbirko sesutij." -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" "Pot do podatkovne zbirke dvojnika sqlite (privzeto: ni preverjanja za " "dvojnike)" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "Ne morete uporabiti -C brez -S. Ustavljanje." #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "Ali je pošiljanje teh prilog vredu? [y/n]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "Videti je, da ta paket ni nameščen pravilno" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " @@ -486,8 +487,8 @@ "To ni uradni paket %s. Odstranite morebitni paket tretjih oseb in poskusite " "znova." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -500,26 +501,26 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "neznam program" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "Program \"%s\" se je nepričakovano zaprl" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "Težava v %s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." @@ -527,53 +528,53 @@ "Vaš računalnik nima dovolj prostega pomnilnika za samodejno preučevanje " "težave in pošiljanje poročila razvijalcem." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "Neveljavno poročilo o napaki" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "Dostop do poročila o napaki je bil zavrnjen." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "Napaka" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "Na disku ni dovolj prostora za obdelavo tega poročila." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "Naveden ni noben paket" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "Navesti morate paket ali PID. Oglejte si --help za več podrobnosti." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "Dovoljenje je zavrnjeno" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." @@ -581,44 +582,44 @@ "Navedeno opravilo ne pripada vam. Zaženite ta program kot lastnik opravila " "ali kot skrbnik." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "Neveljaven PID" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "Naveden ID opravila ne pripada programu." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "Skript simptoma %s ni zaznal prizadetega paketa" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "Paket %s ne obstaja" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "Ni mogoče ustvariti poročila" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "Posodabljanje poročila o težavi" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -630,8 +631,8 @@ "\n" "Ustvarite novo poročilo z uporabo \"apport-bug\"." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -651,30 +652,30 @@ "\n" "Ali želite resnično nadaljevati?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "Dodatni podatki niso bili pridobljeni." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "O kakšni vrsti težave bi radi poročali?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "Neznan simptom" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "Simptom \"%s\" ni znan." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." @@ -682,37 +683,37 @@ "Po zaprtju tega sporočila kliknite na okno programa za poročanje težav o " "njem." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "xprop ni uspelo določevanje ID-ja opravila okna" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "%prog <številka poročila>" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "Navedite ime paketa." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "Doda dodatno oznako poročilu. Določite jo lahko večkrat." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" "%prog [možnosti] [simptom|pid|paket|pot programa|datoteka .apport/.crash]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " @@ -722,20 +723,20 @@ "pdi, ali pa samo --pid. Če ne podate nobenega izmed naštetih, bo prikazan " "seznam znanih simptomov. (Privzeto, ko je podan samo en argument)." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "Kliknite na okno kot cilj za izpolnjevanje poročila o težavi." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "" "Zaženi v načinu posodabljanja hroščev. Lahko dodate izbiren parameter --" "package." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" @@ -743,8 +744,8 @@ "Vloži prijavo hrošča o simptomu. (predpostavljeno, če je ime simptoma dano " "kot edini argument.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" @@ -752,8 +753,8 @@ "V načinu --file-bug navedite ime paketa. Če je --pid podan, to ni obvezno. " "(Privzeto, ko je kot edini argument podano ime paketa)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " @@ -763,13 +764,13 @@ "poročilo o hrošču vsebovalo več podrobnosti (predpostavljeno, če je pid dan " "kot edini argument.)." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "Program s posredovanom pid-jem se je obesil." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " @@ -778,8 +779,8 @@ "Poroča o sesutju iz dane datoteke .apport ali .crah namesto iz čakajočih v " "%s. (Predpostavljeno, če je datoteka dana kot edini argument)." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " @@ -788,115 +789,115 @@ "V načinu poročanja hrošča zbrane podatke shrani v datoteko namesto " "poročanja. To datoteko lahko uporabite za poročanje kasneje z druge naprave." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "Izpiši številko različice Apporta." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "To bo v terminalu zagnalo apport-retrace za preučevanje sesutja." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "Poženi sejo gdb" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "Poženi sejo gdb brez prejemanja razhroščevalnih simbolov" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "Posodobi %s s polno simbolično sledjo sklicev" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "To poročilo o težavi se nanaša na program, ki ni več nameščen." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " "occurred." msgstr "Težava se je zgodila s programom %s, ki se je od sesutja spremenil." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "Poročilo o težavi je poškodovano, zato njegova obdelava ni mogoča." #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "Poročilo pripada nenameščenemu paketu." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "Med poskusom obdelave tega poročila o hrošču je prišlo do težave:" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "Ni bilo mogoče določiti imena paketa ali izvornega paketa." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "Spletnega brskalnika ni mogoče zagnati" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "Spletni brskalnik ne more odpreti %s." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "Vpišite podatke svojega računa za sledilni sistem hroščev %s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "Težava z omrežjem" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" "Ni se mogoče povezati z zbirko podatkov o napakah. Preverite svojo " "internetno povezavo." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "Pomnilnik je zapolnjen" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "" "Vašemu sistemu je zmanjkalo pomnilnika za obdelavo poročila o sesutju." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -907,14 +908,14 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "Težava je že znana" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " @@ -924,8 +925,8 @@ "prikazano v spletnem brskalniku. Preverite, če lahko dodate še kakšen " "podatek, ki bi lahko pomagal razvijalcem." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "Ta težava je bila že poročana razvijalcem. Hvala vam!" --- apport-2.20.3.orig/po/sq.po +++ apport-2.20.3/po/sq.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:14+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:45+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: sq\n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "Apport" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr "Na vjen keq, ndodhi një gabim i brendshëm." -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "Nëse vini re probleme të mëtejshme, provoni të rindizni kompjuterin." @@ -58,11 +58,11 @@ msgid "Ignore future problems of this program version" msgstr "Shpërfilli problemet e mëtejshme të këtij versioni të programit" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "Shfaq Detajet" @@ -70,21 +70,21 @@ msgid "_Examine locally" msgstr "_Shqyrtoje lokalisht" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "Lëre të Mbyllur" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "Vazhdo" @@ -100,9 +100,10 @@ "Një informacion po mblidhet i cili mund të ndihmojë zhvilluesit të zgjidhin " "problemin që ju raportuat." +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "Duke ngarkuar informacionin e problemit" @@ -110,8 +111,8 @@ msgid "Uploading problem information" msgstr "Po ngarkojmë informacionin e problemit" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -123,103 +124,103 @@ msgid "Apport crash file" msgstr "Skedar i defekteve të Apport" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "(të dhëna binare)" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "Më vjen keq, programi %s ndali papritmas." -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "Na vjen keq, %s u mbyll papritmas." -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "Na vjen keq, %s ka hasur në një gabim të brendshëm." -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "Tò dërgojë një raport rreth problemit krijuesve?" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "Dërgo" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "Detyro Mbylljen" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "Rinise" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "Programi %s nuk po përgjigjet më." -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "Programi \"%s\" nuk po përgjigjet më." -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "Paketa: %s" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "Na vjen keq, ndodhi një problem gjatë instalimit të programit." -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "Programi %s ka hasur në një gabim të brendshëm." -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "Programi %s u mbyll papritmas." -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "Shpërfilli problemet e mëvonshme të këtij lloji" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "Fshihi Detajet" @@ -232,24 +233,25 @@ msgid "Destination directory exists and is not empty." msgstr "Direktoria e destinacionit ekziston dhe nuk është bosh." -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "Emri i Përdoruesit:" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "Fjalëkalimi:" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "Duke Mbledhur Informacion për Problemin" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "Duke mbledhur informacion për problemin" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." @@ -257,7 +259,7 @@ "Informacioni i mbledhur mund t'iu dërgohet krijuesve për të përmirësuar " "programin. Kjo mund të zgjasë disa minuta." -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "Duke Ngarkuar Informacionin e Problemit" @@ -284,13 +286,13 @@ "Ju lutem vendosni fjalëkalimin tuaj që të keni akses në raportet e " "problemeve të programeve së sistemit." -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "Raporto një problem..." -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "Raportoni një mosfunksionim tek krijuesit" @@ -340,9 +342,8 @@ "elementi i ekzekutueshëm që perdoret nën valgrind's memcheck tool për " "zbulimin e rrjedhjes së memorjes" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "" @@ -353,17 +354,17 @@ msgid "Error: %s is not an executable. Stopping." msgstr "Gabim: %s nuk është i ekzekutueshëm. Po ndalohet." -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "" "Sistemi juaj mund të bëhet i paqëndrueshëm tani dhe mund të ketë nevojë të " "rindizet." -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "Mos vendosni gjurmë të reja në raport, por shkruajini ato në stdout." -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" @@ -371,34 +372,34 @@ "Nisni një seksion interaktiv gdb me bazën e raportueshme (-o ignored; nuk e " "rishkruan raportin)" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" "Shkruajeni raportin e modifikuar në skedarin e dhënë dhe mos modifikoni " "raportin origjinal." -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "Hiqeni core dump nga raporti pas rigjenerimit të gjurmës së stack" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "Mbishkruaje CoreFile të raportit" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "Mbishkruaje ExecutablePath të raportit" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "Mbishkruaj ProcMaps të raportit" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "Rindërto informacionin e paketave të raportit" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -415,29 +416,29 @@ "skedarët e konfigurimit të sistemit, por më pas do të jetë në gjendje vetëm " "të gjurmojë dëmitmet që kanë ndodhur në këtë version të programit." -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" "Raporto progresin e shkarkimit/instalimit kur instalon paketat në kutinë e " "rërës" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "Vendosu gjurmë kohore mesazheve në hyrje, për veprime në grupe" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" "Krijo dhe përdor magazina të palëve të treta nga origjinat e specifikuara në " "raporte" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "Drejtoria e ruajtjes së paketave të shkarkuara në kutinë e rërës" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." @@ -446,7 +447,7 @@ "çdo paketë e shkarkuar tashmë shtë gjithashtu e ekstraktuar në këtë kuti " "rëre." -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " @@ -456,7 +457,7 @@ "informacionit. Kjo përdoret kur specifikoni një ID të rënies në ngarkimin e " "gjurmëve të tërhequra (vetëm nëse as -g, -o apo -s nuk janë specifikuar)" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." @@ -464,28 +465,28 @@ "Shfaq gjurmët e tërhequra të bllokimit dhe kërko për konfirmim para se ti " "dërgosh ato në databazën e dëmtimit." -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" "Shtegu për tek databaza e dyfishuar sqlite (nuk ka kërkim për të dyfishta)" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "S'mund të përdorni -C pa -S. Po ndalohet." #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "OK për t'i dërguar këtosi bashkangjitje? [y/n]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "Kjo paketë duket se nuk është instaluar në mënyrë korrekte" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " @@ -494,8 +495,8 @@ "Kjo nuk është një paketë zyrtare %s. Ju lutemi të hqini çdo paketë të palëve " "të treta dhe ta provoni përsëri." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -509,26 +510,26 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "program i panjohur" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "Na vjen keq, programi \"%s\" u mbyll papritur" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "Problem në %s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." @@ -536,56 +537,56 @@ "Kompjuteri juaj nuk ka kujtesë të lirë sa duhet për të analizuar " "automatikisht problemin dhe për t'i dërguar një raport zhvilluesve." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "Raportim i pavlefshëm i problemit" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "Juve nuk ju lejohet të hyni në këtë raportim të problemit." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "Gabim" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "" "Nuk ka hapësirë të disponueshme disku sa duhet për të përpunuar këtë raport." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "Nuk është përcaktuar asnjë paketë" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "" "Juve ju nevojitet të specifikoni një paketë apo një PID. Shikoni --help për " "më tepër informacion." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "Leja ju mohohet" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." @@ -593,44 +594,44 @@ "Proçesi i përcaktuar nuk ju përket juve. Ju lutemi niseni këtë program si " "posedues i tij ose si rrënjë." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "PID i Pavlefshëm" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "ID-ja e specifikuar e proçesit nuk i përket një programi." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "Skripti i simptomës %s nuk përcaktoi një paketë të ndikuar" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "Paketa %s nuk ekziston" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "Nuk mund të krijoj raport" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "Duke përditësuar raportin e problemit" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -642,8 +643,8 @@ "\n" "Ju lutemi të krijoni një raport të ri duke përdorur \"apport-bug\"." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -663,30 +664,30 @@ "\n" "Dëshironi me të vërtetë të vazhdoni?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "Nuk u mblodh informacion shtesë." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "Çfarë lloj problemi dëshironi të raportoni?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "Simptomë e panjohur" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "Simptoma \"%s\" nuk njihet." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." @@ -694,38 +695,38 @@ "Pasi ta mbyllni këtë mesazh ju lutemi të klikoni në dritaren e programit për " "të raportuar një problem të lidhur me të." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "xprop dështoi në përcaktimin e ID të proçesit të dritares" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "%prog " -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "Specifiko emrin e paketës." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "" "Shtojini një etiketë më shumë raportit. Mund të specifikohet shumë herë." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " @@ -735,21 +736,21 @@ "pid, ose vetëm një --pid. Nëse asnjë nuk jepet, shfaq një listë të " "simptomave të njohura. (Vendoset nëse jepet vetëm një argument.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "" "Kliko një ditare si shënjestër për të krijuar një raport rreth problemit." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "" "Nise në mënyrë të përditësimit të gabimit. Mund të marrë një --paketë " "opsionale." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" @@ -757,8 +758,8 @@ "Krijoni një raport defekti për një simptomë. (Vendoset nëse emri i simptomës " "jepet vetëm si një argument.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" @@ -767,8 +768,8 @@ "specifikohet një --pid. (Emri i paketës së vendosur jepet vetëm si një " "argument.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " @@ -778,13 +779,13 @@ "informacioni i gabimit do të përmbajë më tepër informacion. (Implikohet nëse " "pid është dhënë vetëm si argument)." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "Pid i dhënë është një program në pritje." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " @@ -793,8 +794,8 @@ "Raporto gabimin nga skedari i dhënë .apport ose .crash në vend të atyre që " "presin në %s. (Vendoset nëse skedari është dhënë vetëm si argument.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " @@ -804,46 +805,46 @@ "një skedar në vend që ta raportoni atë. Ky skedar mund të raportohet më vonë " "nga një makinë tjetër." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "Printo numrin e versionit të Apport." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "" "Kjo do të nise apport-retrace në një dritare terminali për të shqyrtuar " "gabimin." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "Nis seksionin gdb" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "Nis seksionin gdb pa shkarkuar simbolet e gabimeve" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "Përditëso %s pa gjurmë të plota simbolike" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "" "Ky problem ka të bëjë me një program i cili nuk është më i instaluar." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " @@ -851,76 +852,76 @@ msgstr "" "Problemi ndodhi me programin %s i cili ndryshoi që kur ndodhi gabimi." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "Ky raportim i problemit është i dëmtuar dhe nuk mund të shqyrtohet." #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "Raporti i përket një pakete që nuk është instaluar." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "" "Ndodhi një gabim gjatë përpjekjes për të përpunuar këtë raport të problemit:" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "Nuk mund të përcaktojmë emrin e paketës apo të burimit të saj." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "Nuk jemi në gjendje të nisim shfletuesin e Internetit" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "" "Nuk jemi në gjendje të nisim shfletuesin e Internetit për të hapur %s." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "" "ju lutemi të vendosni informacionin e llogarisë suaj për sistemin e " "gjurmimit të gabimeve %s." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "Problem i rrjetit" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" "Nuk mund të lidhemi me databazën e dëmtimeve, ju lutemi të kontrolloni " "lidhjen tuaj me Internetin." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "Kujtesa u lodh" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "" "Sistemi juaj nuk ka kujtesë sa duhet për të proçeduar këtë raport dëmtimi." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -931,14 +932,14 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "Problemi i njohur tashmë" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " @@ -948,8 +949,8 @@ "shfletuesin e Internetit. Ju lutemi kontrolloni nëse mund të shtoni " "infromacion të mëtejshëm i cili mund të ndihmojë krijuesit." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "Ky problem ju është raportuar tashmë zhvilluesve. Faleminderit!" --- apport-2.20.3.orig/po/sr.po +++ apport-2.20.3/po/sr.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:15+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:47+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: sr\n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "Апорт" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr "Извините, догодила се унутрашња грешка." -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "" "Ако приметите будуће проблеме, покушајте поново да покренете рачунар." @@ -58,11 +58,11 @@ msgid "Ignore future problems of this program version" msgstr "Занемари будуће проблеме у раду овог издања програма" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "Прикажи појединости" @@ -70,21 +70,21 @@ msgid "_Examine locally" msgstr "_Испитај локално" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "Остави затворено" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "Настави" @@ -100,9 +100,10 @@ "Прикупљене су информације које могу да помогну ауторима у решавању проблема " "који сте пријавили." +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "Шаљем информације о проблему" @@ -110,8 +111,8 @@ msgid "Uploading problem information" msgstr "Шаљем информације о проблему" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -123,103 +124,103 @@ msgid "Apport crash file" msgstr "Датотека урушавања Апорта" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "(бинарни подаци)" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "Извините, програм „%s“ се неочекивано зауставио." -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "Извините, „%s“ се неочекивано затворио." -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "Извините, „%s“ је наишао на унутрашњу грешку." -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "Да ли желите да пошаљете извештај програмерима?" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "Пошаљи" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "Приморај затварање" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "Поново покрени" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "Програм „%s“ је престао да одговара." -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "Програм „%s“ је престао да одговара." -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "Пакет: %s" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "Извините, дошло је до проблема приликом инсталирања софтвера." -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "Програм „%s“ је наишао на унутрашњу грешку." -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "Програм „%s“ се неочекивано затворио." -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "Занемари будуће проблеме ове врсте" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "Сакриј детаље" @@ -232,24 +233,25 @@ msgid "Destination directory exists and is not empty." msgstr "Одредишни директоријум постоји и није празан." -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "Корисник:" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "Лозинка:" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "Прикупљам информације о проблему" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "Прикупљам информације о проблему" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." @@ -257,7 +259,7 @@ "Прикупљене информације могу бити послате програмерима ради побољшања " "програма. То може потрајати неколико минута." -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "Шаљем информације о проблему" @@ -283,13 +285,13 @@ msgstr "" "Унесите вашу лозинку да приступите извештавању проблема системских програма" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "Пријави проблем..." -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "Пријавите грешке у раду програмерима" @@ -341,9 +343,8 @@ "извршни који је покренут под валгриндовим алатом за проверу меморије зарад " "откривања цурења меморије" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "" @@ -354,18 +355,18 @@ msgid "Error: %s is not an executable. Stopping." msgstr "Грешка: „%s“ није извршни. Стајем." -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "" "Ваш систем сада може постати нестабилан и може бити потребно да га поново " "покренете." -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "" "Неће унети нове трагове у извештај, већ ће их записати на стандардни излаз." -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" @@ -373,36 +374,36 @@ "Покреће међудејствену гдб сесију са језгром припремљеног извештаја (-o " "занемарено; неће преписати извештај)" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" "Записује измењени извештај у задату датотеку уместо да мења оригинални " "извештај" -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "" "Уклања језгро припремљеног из извештаја након поновног стварања спремника " "путање" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "Замењује кључну датотеку извештаја" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "Замењује извршну путању извештаја" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "Замењује мапе процеса извештаја" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "Обнавља информације пакета извештаја" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -419,28 +420,28 @@ "бити у стању да испрати урушавања која се дешавају на тренутно покренутом " "издању." -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" "Извештава о напредовању преузетог/инсталираног приликом инсталације пакета у " "пробном систему" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "Придодаје ознаку времена порукама дневника, за групну радњу" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" "Направи и користи ризнице трећих страна од изворних наведених у извештајима" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "Директоријум оставе за пакете преузете у пробном систему" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." @@ -448,7 +449,7 @@ "Директоријум за нераспаковане пакете. Наредна покретања ће подразумевати да " "је било који већ преузети пакет такође извучен у овом издвојеном окружењу." -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " @@ -459,7 +460,7 @@ "пронађене трагове спремника (само ако ни „-g“, ни „-o“, ни „-s“ нису " "наведени)" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." @@ -467,28 +468,28 @@ "Приказује пронађене трагове спремника и тражи потврду пре него што их пошаље " "у базу података о урушавањима." -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" "Путања до двоструке базе података скулајта (основно: без провере дупликата)" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "Не можете да користите „-C“ без „-S“. Заустављам." #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "Да ли је у реду да пошаљем ове као прилоге? [y/n]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "Изгледа да овај пакет није исправно инсталиран" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " @@ -497,8 +498,8 @@ "Ово није званичан „%s“ пакет. Уклоните пакет било које треће стране и " "покушајте опет." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -511,26 +512,26 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "непознат програм" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "Извините, програм „%s“ је неочекивано затворен" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "Проблем у „%s“" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." @@ -538,54 +539,54 @@ "Ваш рачунар нема довољно слободне меморије да самостално анализира проблем и " "пошаље извештај ауторима." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "Неисправан извештај о проблему" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "Вама није допуштено да приступите извештају овог проблема." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "Грешка" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "Нема довољно простора на диску за обрађивање овог извештаја." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "Ниједан пакет није наведен" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "" "Треба да одредите пакет или ПИБ. Погледајте „--help“ за више информација." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "Приступ је одбијен" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." @@ -593,44 +594,44 @@ "Наведени процес не припада вама. Покрените овај програм као власник процеса " "или као администратор." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "Неисправан ПИБ" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "Наведени ПИБ не припада програму." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "Скрипта симптома „%s“ није одредила ниједан подутицајни пакет" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "Пакет „%s“ не постоји" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "Не могу да направим извештај" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "Освежавам извештај о проблему" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -642,8 +643,8 @@ "\n" "Направите нови извештај користећи „apport-bug“." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -662,30 +663,30 @@ "\n" "Да ли заиста желите да наставите?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "Нису прикупљене додатне информације." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "О каквом проблему желите да известите?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "Непознати симптом" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "Симптом „%s“ није познат." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." @@ -693,37 +694,37 @@ "Након затварања ове поруке кликните на прозор неког програма да известите о " "његовом проблему." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "икспроп није успео да одреди ИБ процеса прозора" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "%prog <број извештаја>" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "Наводи назив пакета." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "Додаје додатну ознаку извештају. Може бити одређено више пута." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" "%prog [опције] [симптом|пиб|пакет|путања програма|.apport/.crash датотека]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " @@ -734,20 +735,20 @@ "приказаће списак познатих симптома. (Подразумева се ако је дат само један " "аргумент.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "Притисните на прозор као циљ да попуните извештај о проблему." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "" "Биће покренут у режиму слања грешке. Може да садржи опционални пакет (--" "package)." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" @@ -755,8 +756,8 @@ "Попуниће извештај грешке о симптому. (Подразумева се ако је назив симптома " "дат као једини аргумент.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" @@ -765,8 +766,8 @@ "изборно ако је одређен пиб (--pid). (Подразумева се ако је назив пакета дат " "као једини аргумент.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " @@ -776,13 +777,13 @@ "извештај о грешци ће садржати више информација. (Подразумева се ако је пиб " "дат као једини аргумент.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "Обезбеђени пиб је проблематичан програм." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " @@ -791,8 +792,8 @@ "Пријављује о урушавању из дате „.apport“ или „.crash“ датотеке уместо једне " "приправне у „%s“. (Подразумева се ако је датотека дата као једини аргумент.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " @@ -802,44 +803,44 @@ "да шаље извештај. Датотека може бити послата касније и са неког другог " "рачунара." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "Приказује број издања Апорта." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "Ово ће покренути „apport-retrace“ у прозору терминала да испита пад." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "Покреће гдб сесију" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "Покреће гдб сесију без преузимања симбола уклањања грешака" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "Освежи „%s“ потпуном симболичком трасом спремника" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "" "Овај извештај о проблему се односи на програм који није више инсталиран." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " @@ -848,73 +849,73 @@ "Проблем се догодио са програмом „%s“ који се изменио од када је дошло до " "урушавања." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "Овај извештај о грешци је оштећен и не може бити обрађен." #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "Извештај припада пакету који није инсталиран." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "" "Дошло је до грешке док сам покушавао да обрадим извештај о овом проблему:" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "Не могу да утврдим пакет или изворни назив пакета." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "Не могу да покренем прегледника интернета" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "Не могу да покренем прегледника интернета да бих отворио „%s“." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "Унесите информације о вашем налогу за систем праћења грешака „%s“" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "Проблем са мрежом" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" "Не могу да успоставим везу са базом података о урушавањима, проверите везу " "са интернетом." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "Недостатак меморије" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "" "Ваш систем нема довољно меморије да обради овај извештај о паду система." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -925,14 +926,14 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "Проблем је већ познат" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " @@ -942,8 +943,8 @@ "интернета. Проверите да ли можете да додате било какву додатну информацију " "која би могла да буде од помоћи ауторима." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "Овај проблем је већ пријављен програмерима. Хвала вам!" --- apport-2.20.3.orig/po/sv.po +++ apport-2.20.3/po/sv.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:15+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:47+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: sv\n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "Apport" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr "Tyvärr, ett internt fel inträffade." -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "Starta om datorn om du fortsätter att uppleva problem." @@ -57,11 +57,11 @@ msgid "Ignore future problems of this program version" msgstr "Ignorera framtida problem med denna programversion" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "Visa information" @@ -69,21 +69,21 @@ msgid "_Examine locally" msgstr "Und_ersök lokalt" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "Lämna stängd" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "Fortsätt" @@ -99,9 +99,10 @@ "Information samlas in som kan hjälpa utvecklarna att rätta till problemet " "som du rapporterar." +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "Skickar probleminformation" @@ -109,8 +110,8 @@ msgid "Uploading problem information" msgstr "Skickar probleminformation" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -122,103 +123,103 @@ msgid "Apport crash file" msgstr "Kraschrapportsfil för Apport" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "(binär data)" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "" -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "Tyvärr, %s har oväntat stängts av." -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "Tyvärr, %s har påträffat ett internt fel." -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "Skicka problemrapport till utvecklarna?" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "Skicka" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "Starta igen" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "" -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "" -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "Paket: %s" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "Tyvärr, ett problem inträffade vid installation av program." -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "" -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "Programmet %s har oväntat stängts av." -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "Ignorera framtida problem av denna typ" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "Dölj information" @@ -231,24 +232,25 @@ msgid "Destination directory exists and is not empty." msgstr "Målkatalogen finns och är inte tom." -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "Användarnamn:" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "Lösenord:" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "Samlar in probleminformation" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "Samlar in probleminformation" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." @@ -256,7 +258,7 @@ "Den insamlade informationen kan skickas till utvecklarna för att förbättra " "programmet. Det här kan ta några minuter." -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "Skickar probleminformation" @@ -279,13 +281,13 @@ "Please enter your password to access problem reports of system programs" msgstr "" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "Rapportera ett problem..." -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "Rapportera ett fel till utvecklarna" @@ -326,9 +328,8 @@ "detection" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "Installera ett extrapaket i sandlådan (kan anges flera gånger)" @@ -338,16 +339,16 @@ msgid "Error: %s is not an executable. Stopping." msgstr "" -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "Ditt system kan nu bli instabilt och kan behöva att startas om." -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "" "Lägg inte in nya bakåtspårningar i rapporten, men skriv dem till standard ut." -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" @@ -355,35 +356,35 @@ "Starta en interaktiv gdb-session med rapportens minnesutskrift (-o " "ignoreras; skriver inte om rapporten)" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" "Skriv ändrad rapport till angiven fil istället för att ändra den " "ursprungliga rapporten" -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "" "Ta bort minnesutskriften från rapporten efter omgenerering av stackspårning" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "Åsidosätt rapportens CoreFile" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "Åsidosätt rapportens ExecutablePath" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "Åsidosätt rapportens ProcMaps" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "Bygg om rapportens paketinformation" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -400,36 +401,36 @@ "kommer då endast kunna bakåtspåra krascher som skedde i den utgåva som nu " "körs." -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" "Rapportera förlopp för hämtning/installation när paket installeras i " "sandlådan" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "" "Lägg till tidsstämplar längst fram i loggmeddelanden, för automatiserade " "åtgärder" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" "Skapa och använd tredjepartsförråd från platser specificerade i rapporter" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "Mellanlagringskatalog för paket som hämtas i sandlådan" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " @@ -439,7 +440,7 @@ "används när ett krasch-id anges för att skicka upp retraced stackspårningar " "(endast om ingen av -g, -o, eller -s har angivits)" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." @@ -447,29 +448,29 @@ "Visa retraced stackspårningar och fråga efter bekräftelse innan de skickas " "till kraschdatabasen." -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" "Sökväg till den duplicerade sqlite-databasen (standard: ingen kontroll av " "duplikat)" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "" #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "OK att skicka dessa som bilagor? [y/n]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "Detta paket verkar inte ha installerats korrekt" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " @@ -478,8 +479,8 @@ "Det här är inte ett officiellt %s-paket. Ta bort eventuella tredjepartspaket " "och försök igen." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -492,26 +493,26 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "okänt program" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "Tyvärr, programmet \"%s\" avslutades oväntat" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "Problem i %s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." @@ -519,55 +520,55 @@ "Din dator har inte tillräckligt med ledigt minne för att automatiskt " "analysera problemet och skicka en rapport till utvecklarna." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "Ogiltig problemrapport" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "Du tillåts inte komma åt denna problemrapport." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "Fel" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "" "Det finns inte tillräckligt mycket diskutrymme för att behandla denna " "rapport." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "Inget paket angivit" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "DU måste ange ett paket eller en PID. Se --help för mer information." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "Åtkomst nekad" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." @@ -575,44 +576,44 @@ "Den angivna processen tillhör inte dig. Kör det här programmet som " "processägaren eller som root." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "Ogiltig PID" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "Det angivna process-id:t tillhör inte något program." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "Symtomskriptet %s fastställde inte ett påverkat paket" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "Paketet %s finns inte" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "Kan inte skapa rapporten" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "Uppdaterar problemrapporten" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -624,8 +625,8 @@ "\n" "Skapa en ny rapport med \"apport-bug\"." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -645,30 +646,30 @@ "\n" "Vill du verkligen fortsätta?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "Ingen ytterligare information har samlats in." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "Vilken typ av problem vill du rapportera?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "Okänd symptom" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "Symptomen \"%s\" är inte känd." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." @@ -676,37 +677,37 @@ "Efter att du stängt detta meddelande kan du klicka på ett programfönster för " "att rapportera ett problem med det." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "xprop misslyckades med att fastställa process-ID för fönstret" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "%prog " -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "Ange paketnamn." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "Lägg till en extra tagg till rapporten. Kan anges flera gånger." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" "%prog [flaggor] [symptom|pid|package|program sökväg|.apport/.crash-fil]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " @@ -716,18 +717,18 @@ "bara en --pid. Om ingen anges så visas en lista över kända symptom. " "(Standard om ett enda argument anges.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "Klicka på ett fönster för att rapportera ett problem med det." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "Starta i feluppdateringsläge. Kan ta emot en valfri --package." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" @@ -735,8 +736,8 @@ "Skicka in en felrapport om ett symptom. (Standard om symptomnamnet anges som " "enda argument.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" @@ -744,8 +745,8 @@ "Ange paketnamn i läget --file-bug. Detta är valfritt om en --pid anges. " "(Standard om paketnamnet anges som enda argument.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " @@ -755,13 +756,13 @@ "felrapporten att innehålla mer information (underförstått om pid anges som " "enda argument.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " @@ -770,8 +771,8 @@ "Rapportera kraschen från angiven fil med ändelsen .apport eller .crash " "istället för de väntande i %s. (Standard om filen anges som enda argument.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " @@ -781,47 +782,47 @@ "istället för att rapportera. Denna fil kan sedan rapporteras in från en " "annan dator." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "Skriv ut versionsnummer för Apport." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "" "Detta kommer starta apport-retrace i ett terminalfönster för att undersöka " "kraschen." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "Kör GDB-session" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "Kör GDB-session utan att ladda ner felsökningssymboler" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "Uppdatera %s med fullständigt symbolisk stackspårning" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "" "Denna problemrapport gäller för ett program som inte längre finns " "installerat." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " @@ -830,72 +831,72 @@ "Problemet inträffade med programmet %s, vilket har ändrats sedan kraschen " "hände." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "Den här problemrapporten är skadad och kan inte behandlas." #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "Rapporten tillhör ett paket som inte är installerat." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "Ett fel inträffade när den här problemrapporten skulle bearbetas:" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "Kunde inte bestämma paketet eller källpaketets namn." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "Kunde inte starta webbläsaren" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "Kunde inte starta webbläsaren för att öppna %s." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "Ange din kontoinformation för felrapporteringssystemet %s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "Nätverksproblem" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" "Kan inte ansluta till kraschdatabasen. Kontrollera din internetanslutning." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "Slut på minne" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "" "Ditt system har inte tillräckligt mycket minne att behandla den här " "kraschrapporten." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -906,14 +907,14 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "Problemet är redan känt" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " @@ -923,8 +924,8 @@ "webbläsaren. Kontrollera om du kan lägga till ytterligare information som " "kan vara av användning för utvecklarna." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "Problemet har redan rapporterats till utvecklarna. Tack!" --- apport-2.20.3.orig/po/ta.po +++ apport-2.20.3/po/ta.po @@ -16,15 +16,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:15+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:47+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: \n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "அப்போர்ட்" @@ -44,10 +44,10 @@ msgid "Sorry, an internal error happened." msgstr "" -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "" @@ -59,11 +59,11 @@ msgid "Ignore future problems of this program version" msgstr "" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "" @@ -71,21 +71,21 @@ msgid "_Examine locally" msgstr "" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "" @@ -99,9 +99,10 @@ "you report." msgstr "" +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "பிரச்னையின் தகவலைப் பதிவேற்றப்படுகிறது" @@ -109,8 +110,8 @@ msgid "Uploading problem information" msgstr "" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -120,103 +121,103 @@ msgid "Apport crash file" msgstr "" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "" -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "" -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "" -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "" -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "" -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "" -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "" -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "" -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "" @@ -229,30 +230,31 @@ msgid "Destination directory exists and is not empty." msgstr "" -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "பயனாளர் பெயர்:" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "கடவுச் சொல்:" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." msgstr "" -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "பிரச்னையின் தகவலைப் பதிவேற்றப்படுகிறது" @@ -275,13 +277,13 @@ "Please enter your password to access problem reports of system programs" msgstr "" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "" -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "" @@ -322,9 +324,8 @@ "detection" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "" @@ -334,46 +335,46 @@ msgid "Error: %s is not an executable. Stopping." msgstr "" -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -383,72 +384,72 @@ "be able to retrace crashes that happened on the currently running release." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " "neither -g, -o, nor -s are specified)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "" #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " "and try again." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -457,26 +458,26 @@ "%s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "%s இல் இடர்பாடு" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." @@ -484,96 +485,96 @@ "தங்கள் கணிப்பொறியில் தேவையான இடம் இல்லாததால் மென்பொருட்களை ஆராய்ந்து " "பிரச்சனைகளை தெரிவிக்க இயலவில்லை" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "இந்தப் பிழை அறிக்கையை அணுக தங்களுக்கு அனுமதி கிடையாது" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "பிழை" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "இப் பிழை அறிக்கையைக் கையாள போதிய இடம் தங்கள் கணிப்பொறியில் இல்லை." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "அனுமதி மறுக்கப்பட்டது" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "அறிக்கையை உருவாக்க இயலவில்லை" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -581,8 +582,8 @@ "Please create a new report using \"apport-bug\"." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -594,230 +595,230 @@ "Do you really want to proceed?" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "எத்தகையப் பிழையை அறிவிக்க விரும்புகிறீர்கள்?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " "a single argument is given.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " "ones in %s. (Implied if file is given as only argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " "machine." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " "occurred." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "" #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "இந்தப் பிழை அறிக்கையைக் கையாளும்போது பிழை ஏற்பட்டுள்ளது" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "பொதிகளின் அல்லது மூல தொகுப்புகளின் பெயரை நிர்ணயிக்க முடியவில்லை." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -825,22 +826,22 @@ "%s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " "helpful for the developers." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "" --- apport-2.20.3.orig/po/te.po +++ apport-2.20.3/po/te.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:15+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:47+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: te\n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr "" -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "" @@ -57,11 +57,11 @@ msgid "Ignore future problems of this program version" msgstr "" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "" @@ -69,21 +69,21 @@ msgid "_Examine locally" msgstr "" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "" @@ -97,9 +97,10 @@ "you report." msgstr "" +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "" @@ -107,8 +108,8 @@ msgid "Uploading problem information" msgstr "" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -118,103 +119,103 @@ msgid "Apport crash file" msgstr "" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "" -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "" -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "" -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "" -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "" -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "" -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "" -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "" -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "" @@ -227,30 +228,31 @@ msgid "Destination directory exists and is not empty." msgstr "" -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." msgstr "" -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "" @@ -273,13 +275,13 @@ "Please enter your password to access problem reports of system programs" msgstr "" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "" -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "" @@ -320,9 +322,8 @@ "detection" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "" @@ -332,46 +333,46 @@ msgid "Error: %s is not an executable. Stopping." msgstr "" -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -381,64 +382,64 @@ "be able to retrace crashes that happened on the currently running release." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " "neither -g, -o, nor -s are specified)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "" #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "ఈ ప్యాకేజీ సరిగ్గా ఇన్స్టాల్ కాదు అనిపిస్తుంది" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " @@ -447,8 +448,8 @@ "ఈ అధికారిక% s ప్యాకేజీ లేదు. ఏవైనా మూడవ పార్టీ ప్యాకేజీ తొలగించి మళ్ళీ " "ప్రయత్నించండి." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -457,26 +458,26 @@ "%s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "తెలియని కార్యక్రమం" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "క్షమించాలి, కార్యక్రమం \"% s\" అనుకోకుండా మూసివేయబడింది" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." @@ -484,54 +485,54 @@ "మీ కంప్యూటర్ ఆటోమేటిక్గా సమస్య విశ్లేషించేందుకు మరియు డెవలపర్లకు ఒక నివేదిక " "పంపేందుకు తగినంత ఉచిత మెమరీ లేదు." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "చెల్లని సమస్య నివేదిక" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "దోషము" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "ఈ నివేదిక ప్రాసెస్ చేయడానికి తగినంత డిస్క్ స్థలం అందుబాటులో లేదు." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "ప్యాకేజీ పేర్కొనలేదు" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "" "మీరు ఒక ప్యాకేజీ లేదా ఒక PID పేర్కొనాలి. చూడండి --help మరింత సమాచారం కొరకు ." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "అనుమతి నిరాకరించబడింది" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." @@ -539,44 +540,44 @@ "పేర్కొన్న ప్రక్రియ మీకు సంబంధించినది కాదు. ప్రక్రియ యజమాని లేదా, root లాగ ఈ " "ప్రోగ్రామ్ రన్ చెయ్యండి." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "చెల్లని PID" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "పేర్కొన్న ప్రక్రియ ID ఒక కార్యక్రమానికి సంబంధించినది కాదు." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "లక్షణం లిపి% s ఒక బాధిత ప్యాకేజీ గుర్తించేందుకు లేదు" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "ప్యాకేజీ% s లేదు" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "నివేదిక సృష్టించడం సాధ్యం కాదు" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "సమస్య నివేదిక నవీకరిస్తోంది" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -587,8 +588,8 @@ "లేదా ఇప్పటికే మూసివేయబడింది.\n" "\"apport-bug\" ఉపయోగించి ఒక నివేదిక రూపొందించండి." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -600,230 +601,230 @@ "Do you really want to proceed?" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "అదనపు సమాచారం సేకరించ లేదు" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " "a single argument is given.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " "ones in %s. (Implied if file is given as only argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " "machine." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " "occurred." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "" #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "నివేదిక ఇన్స్టాల్ లేని ఒక ప్యాకేజీ చెందినది." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "ఈ సమస్య నివేదిక ప్రాసెస్ చేసేటప్పుడు ఒక దోషం ఏర్పడింది:" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -831,22 +832,22 @@ "%s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " "helpful for the developers." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "" --- apport-2.20.3.orig/po/tg.po +++ apport-2.20.3/po/tg.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:15+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:47+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: tg\n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "Apport" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr "Мутаассифона, хатогии дохилӣ ба вуҷуд омад." -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "" "Агар шумо мушкилиҳои дигарро бинед, кӯшиш кунед, ки компютерро бозоғозӣ " @@ -59,11 +59,11 @@ msgid "Ignore future problems of this program version" msgstr "Нодида гирифтани мушкилиҳои ояндаи ин версияи барнома" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "Намоиш додани тафсилот" @@ -71,21 +71,21 @@ msgid "_Examine locally" msgstr "_Санҷиши маҳаллӣ" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "Пӯшида нигоҳ доред" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "Давом додан" @@ -101,9 +101,10 @@ "Маълумоте ҷамъ карда мешавад, ки метавонад ба таҳиягарон ҳангоми ислоҳ " "кардани мушкилии гузоришдодашудаи шумо кӯмак кунад." +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "Боркунии иттилооти мушкилӣ" @@ -111,8 +112,8 @@ msgid "Uploading problem information" msgstr "Маълумоти мушкилӣ бор шуда истодааст" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -124,103 +125,103 @@ msgid "Apport crash file" msgstr "Файли нокомии Apport" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "(иттилооти дуӣ)" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "Мутаассифода, барномаи %s ногаҳонан пӯшида шуд." -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "Мутаассифона, %s ногаҳонан пӯшида шуд." -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "Мутаассифона, %s бо хатогии дохилӣ дучор шуд." -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "Гузориши мушкилиро ба таҳиягарон мефиристед?" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "Фиристодан" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "Маҷбур кардани пӯшидан" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "Аз нав иҷро кардан" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "Барномаи %s ҷавоб намедиҳад." -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "Барномаи \"%s\" ҷавоб намедиҳад." -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "Баста: %s" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "Мутаассифона, ҳангоми насбкунии нармафзор мушкилие ба вуҷуд омад." -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "Барномаи %s дорои хатогии дарунӣ мебошад." -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "Барномаи %s ногаҳон қатъ шудааст." -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "Нодида гирифтани мушкилиҳои ояндаи ин намуд" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "Пинҳон кардани тафсилот" @@ -233,24 +234,25 @@ msgid "Destination directory exists and is not empty." msgstr "Директорияи таъинотӣ вуҷуд дорад ва холӣ намебошад." -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "Номи корбар:" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "Парол:" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "Ҷамъкунии маълумоти мушкилӣ" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "Ҷамъкунии маълумоти мушкилӣ" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." @@ -258,7 +260,7 @@ "Маълумоти ҷамъшуда метавонад барои беҳтар кардани барнома ба таҳиягарон " "фиристода шавад. Ин метавонад якчанд дақиқаро гирад." -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "Боркунии иттилооти мушкилӣ" @@ -285,13 +287,13 @@ "Лутфан, пароли худро ворид кунед, то ин ки ба гузоришҳои мушкилиҳои " "барномаҳои системавӣ дастрасӣ пайдо кунед" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "Гузориши мушкилӣ..." -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "Гузориш додани амали нодуруст ба таҳиягарон" @@ -343,9 +345,8 @@ "файли иҷрошаванда, ки дар абзори саниҷиши ҳофизаи valgrind барои пайдо " "кардани ихроҷҳои ҳофиза иҷро мешавад" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "" @@ -357,16 +358,16 @@ msgid "Error: %s is not an executable. Stopping." msgstr "Хатогӣ: %s иҷро намешавад. Амал қатъ карда шуд." -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "" "Ҳозир системаи шумо метавонад ноустувор гардад ва бояд бозоғозӣ карда шавад." -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "Пайгириҳои навро ба гузориш нагузоред, онҳоро ба stdout нависед." -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" @@ -374,35 +375,35 @@ "Оғоз кардани ҷаласаи интерактивии gdb бо анбораи мағзи гузориш (-o нодида " "гирифта мешавад; гузоришро рӯйҳамнависӣ намекунад)" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" "Навиштани гузориши тағйирёфта ба файли додашуда ба ҷойи тағйир додани " "гузориши аслӣ" -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "" "Тоза кардани дампи мағз аз гузориш баъд аз эҷодкунии дубораи пайгирии анбора" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "Бекор кардани CoreFile-и гузориш" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "Бекор кардани ExecutablePath-и гузориш" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "Бекор кардани ProcMaps-и гузориш" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "Аз нав сохтани маълумоти баста" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -419,26 +420,26 @@ "системаро истифода мебарад, аммо он гоҳ метавонад танҳо нокомиҳоеро, ки дар " "релизи ҷории иҷрошаванда ба вуҷуд омаданд, дубора рад мекунад." -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" "Гузориш додани раванди боргирӣ/насбкунӣ ҳангоми насбкунии бастаҳо ба регдон" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "Гузоштани вақт ба паёмҳои сабти рӯйдодҳо, барои амалиётҳои гурӯҳӣ" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "Директорияи зерҳофиза барои бастаҳое, ки дар регдон боргирӣ шудаанд" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." @@ -446,7 +447,7 @@ "Директория барои бастаҳои баровардашуда. Иҷрокуниҳои оянда ҳисоб мекунанд, " "ки бастаи аллакай боргиришуда ба ин регдон низ бароварда шудааст." -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " @@ -456,7 +457,7 @@ "истифода мешавад, ки барои боркунии пайгириҳои дубора радшудаи анбора ID-и " "нокомӣ муайян карда мешавад (танҳо он гоҳ, ки -g, -o, ё -s муайян нашудааст)" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." @@ -464,29 +465,29 @@ "Намоиш додани пайгириҳои радшудаи дубора ва пурсидани тасдиқнома пеш аз " "фиристодани онҳо ба пойгоҳи иттилоотии нокомиҳо." -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" "Масир ба пойгоҳи иттилоотии такрории sqlite (пешфарз: бе санҷиши такрориҳо)" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "" "Шумо наметавонед \"-C\"-ро бе \"-S\" истифода баред. Амал қатъ карда шуд." #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "Инҳоро ҳамчун замимаҳо мефиристонед? [y/n]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "Чунин менамояд, ки ин баста ба таври дуруст насб нашудааст" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " @@ -495,8 +496,8 @@ "Ин бастаи расмии %s намебошад. Лутфан, ягон бастаи тарафи сеюмро тоза карда, " "амалро такрор кунед." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -509,26 +510,26 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "барномаи номаълум" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "Мутаассифона, барномаи \"%s\" ногаҳонан пӯшида шуд" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "Мушкилӣ дар %s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." @@ -536,55 +537,55 @@ "Компютери шумо барои ба таври худкор ташхис кардани мушкилӣ ва фиристодани " "гузориш ба таҳиягарон ҳофизаи озоди кофӣ надорад." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "Гузориши мушкилӣ беэътибор аст" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "Шумо наметавонед ба ин гузориши мушкилӣ дастрасӣ пайдо кунед." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "Хатогӣ" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "Барои коркарди ин гузориш фазои диск кофӣ нест." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "Ягон баста муайян нашудааст" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "" "Шумо бояд баста ё PID-ро муайян кунед. Барои маълумоти бештар \"--help\"-ро " "истифода баред." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "Дастарсӣ манъ аст" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." @@ -592,44 +593,44 @@ "Раванди муайяншуда ба шумо тааллуқ надорад. Лутфан, ин барномаро ҳамчун " "раванди root иҷро кунед." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "PID беэътибор" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "ID-и раванди муайяншуда ба барнома тааллуқ надорад." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "Скрипти нишонаи %s бастаи таъсиргирифтаро муайян накард" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "Бастаи %s вуҷуд надорад" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "Гузориш эҷод намешавад" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "Навсозии гузориши мушкилӣ" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -641,8 +642,8 @@ "\n" "Лутфан, гузориши навро тавассути \"apport-bug\" эҷод кунед." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -663,30 +664,30 @@ "\n" "Шумо воқеан мехоҳед идома диҳед?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "Ягон маълумоти иловагӣ ҷамъ карда намешавад." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "Шумо мехоҳед кадом намуди мушкилиро гузориш диҳед?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "Мушкилии номаълум" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "Мушкилии \"%s\" номаълум аст." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." @@ -694,39 +695,39 @@ "Баъд аз пӯшидани ин паём, лутфан, ба равзанаи барнома зер кунед, то ин ки " "мушкилии онро гузориш диҳед." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "xprop ID-и раванди равзанаро муайян карда натавонист" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "%prog " -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "Муайян кардани номи баста." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "" "Иловакунии барчаспи иловагӣ ба гузориш. Метавонад якчанд маротиба муайян " "карда шавад." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " @@ -737,20 +738,20 @@ "нашуда бошад, рӯйхати нишонаҳои маълум намоиш дода мешавад. (Агар аргументи " "ягона дода шавад, ба кор меояд.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "Ба равзанае зер кунед ва мушкилиро гузориш диҳед." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "" "Оғоз кардан дар ҳолати навсозии хатогиҳо. Метавонад \"--package\"-и " "ихтиёриро гирад." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" @@ -758,8 +759,8 @@ "Фиристодани гузориши хатогӣ оид ба нишона. (Танҳо агар номи нишона танҳо " "ҳамчун аргумент дода шудааст, тааллуқ дорад.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" @@ -768,8 +769,8 @@ "бошад, ин ихтиёрӣ мебошад. (Агар ба номи баста танҳо як аргумент дода шавад, " "ба кор меояд.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " @@ -779,13 +780,13 @@ "карда шавад, гузориши хатогӣ маълумоти бештарро дар бар мегирад. (Агар ба " "pid танҳо як аргумент дода шавад, ба кор меояд.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "Pid-и пешниҳодшуда барномаи боздошта мебошад." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " @@ -795,8 +796,8 @@ "мунтазир дар %s. (Агар файл ҳамчун аргументи ягона дода шавад, истифода " "мешавад.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " @@ -806,45 +807,45 @@ "он ба файл захира кунед. Ин файл метавонад баъдан дар компютери дигар " "гузориш дода шавад." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "Чоп кардани рақами версияи Apport." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "" "Ин apport-retrace-ро дар равзанаи терминал аз нав оғоз мекунад, то ин ки " "нокомӣ ташхис карда шавад." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "Иҷро кардани ҷаласаи gdb" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "Иҷро кардани ҷаласаи gdb бе боргирии аломатҳои ислоҳи хатоҳо" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "Навсозӣ кардани %s бо пайгирии аломатии анбора" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "Гузориши мушкилӣ ба барномае тааллуқ дорад, ки дигар насб нашудааст." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " @@ -853,74 +854,74 @@ "Мушкилӣ бо барномаи %s ба вуҷуд омад, ки аз лаҳзаи ба вуҷуд омадани нокомӣ " "тағйир ёфт." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "Гузориши мушкилӣ вайроншуда мебошад ва наметавонад коркард шавад." #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "Гузориш ба бастае тааллуқ дорад, ки насб карда нашудааст." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "Ҳангоми кӯшиши коркарди ин гузориши мушкилӣ хатогӣ ба вуҷуд омад:" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "Баста ё номи бастаи аслӣ муайян карда нашуд." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "Браузер оғоз намешавад" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "Барои кушодани %s браузер оғоз намешавад." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "" "Лутфан, маълумоти ҳисоби худро барои системаи пайгирии хатогиҳои %s ворид " "кунед" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "Мушкилии шабака" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" "Ба пойгоҳи иттилоотии нокомӣ пайваст шудан нашуд, лутфан, пайвасти Интернети " "худро санҷед." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "Ҳофиза кофӣ нест" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "" "Системаи шумо барои коркарди ин гузориши нокомӣ ҳофизаи кофӣ надорад." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -931,14 +932,14 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "Мушкилӣ аллакай дониста мебошад" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " @@ -948,8 +949,8 @@ "гузориш дода шуда буд. Лутфан, санҷед, ки оё шумо метавонед ягон маълумоти " "бештарро илова кунед, ки метавонад барои таҳиягарон фоидаовар бошад." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "Ин мушкилӣ аллакай ба таҳиягарон гузориш дода шуд. Ташаккур ба шумо!" --- apport-2.20.3.orig/po/th.po +++ apport-2.20.3/po/th.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:15+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:47+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: th\n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr "" -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "" @@ -57,11 +57,11 @@ msgid "Ignore future problems of this program version" msgstr "" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "" @@ -69,21 +69,21 @@ msgid "_Examine locally" msgstr "" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "" @@ -97,9 +97,10 @@ "you report." msgstr "" +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "" @@ -107,8 +108,8 @@ msgid "Uploading problem information" msgstr "กำลังอัพโหลดข้อมูลของปัญหา" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -118,103 +119,103 @@ msgid "Apport crash file" msgstr "" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "(binary data)" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "" -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "" -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "" -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "ส่งรายงานปัญหาไปยังผู้พัฒนา?" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "" -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "" -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "" -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "" -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "" -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "" @@ -227,30 +228,31 @@ msgid "Destination directory exists and is not empty." msgstr "" -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "กำลังรวบรวมข้อมูลของปัญหา" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." msgstr "" -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "" @@ -273,13 +275,13 @@ "Please enter your password to access problem reports of system programs" msgstr "" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "รายงานปัญหา" -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "" @@ -320,9 +322,8 @@ "detection" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "" @@ -332,46 +333,46 @@ msgid "Error: %s is not an executable. Stopping." msgstr "" -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -381,72 +382,72 @@ "be able to retrace crashes that happened on the currently running release." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " "neither -g, -o, nor -s are specified)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "" #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " "and try again." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -455,121 +456,121 @@ "%s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -577,8 +578,8 @@ "Please create a new report using \"apport-bug\"." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -590,230 +591,230 @@ "Do you really want to proceed?" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " "a single argument is given.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " "ones in %s. (Implied if file is given as only argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " "machine." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " "occurred." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "" #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -821,22 +822,22 @@ "%s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " "helpful for the developers." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "" --- apport-2.20.3.orig/po/tr.po +++ apport-2.20.3/po/tr.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:15+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:47+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: tr\n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "Apport" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr " Üzgünüz, içsel bir hata oluştu." -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "" "Daha fazla sorunla karşılaşırsanız bilgisayarınız yeniden başlatmayı deneyin." @@ -58,11 +58,11 @@ msgid "Ignore future problems of this program version" msgstr "Bu yazılım sürümünün gelecekteki sorunlarını görmezden gel" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "Ayrıntıları Göster" @@ -70,21 +70,21 @@ msgid "_Examine locally" msgstr "Yerel olarak _İncele" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "Kapalı Bırak" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "Devam Et" @@ -100,9 +100,10 @@ "Bilgi, bildirdiğiniz sorunun çözümünde geliştiricilere yardımı " "dokunabileceği için toplanıyor." +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "Sorun bilgileri yükleniyor" @@ -110,8 +111,8 @@ msgid "Uploading problem information" msgstr "Sorun bilgileri yükleniyor" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -123,103 +124,103 @@ msgid "Apport crash file" msgstr "Apport çökme dosyası" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "(ikili veri)" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "Üzgünüz, %s uygulaması beklenmedik şekilde durdu." -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "Üzgünüz, %s beklenmedik bir şekilde kapandı." -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "Üzgünüz, %s içsel bir hatayla karşılaştı." -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "Hata raporu geliştiricilere gönderilsin mi?" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "Gönder" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "Kapatmaya Zorla" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "Yeniden başlat" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "%s uygulaması yanıt vermeyi durdurdu." -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "\"%s\" programı yanıt vermeyi durdurdu." -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "Paket: %s" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "Üzgünüz, yazılım yüklenirken bir hatayla karşılaşıldı." -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "%s uygulaması bir iç hata ile karşılaştı." -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "%s yazılımı beklenmedik bir şekilde kapandı." -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "İlerde oluşabilecek bu türden sorunları yok say" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "Ayrıntıları Gizle" @@ -232,24 +233,25 @@ msgid "Destination directory exists and is not empty." msgstr "Hedef dizin zaten mevcut ve boş değil." -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "Kullanıcı Adı:" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "Parola:" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "Sorun Bilgileri Toplanıyor" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "Sorun bilgileri toplanıyor" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." @@ -257,7 +259,7 @@ "Toplanan bilgi, uygulamanın geliştirilmesi için geliştiricilere " "gönderilebilir. Bu, birkaç dakika sürebilir." -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "Sorun Bilgileri Gönderiliyor" @@ -282,13 +284,13 @@ msgstr "" "Lütfen sistem programlarının problem raporlarına ulaşmak için şifrenizi girin" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "Bir sorunu bildir..." -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "Geliştiricilere bir arıza bildir" @@ -337,9 +339,8 @@ "bellek sızma denetimi için valgrind'in memcheck aracı altında çalışan " "uygulama" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "" @@ -350,16 +351,16 @@ msgid "Error: %s is not an executable. Stopping." msgstr "Hata: %s yürütülebilir değil. Durduruluyor." -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "" "Sisteminiz şimdi kararsız hale gelebilir ve yeniden başlatılması gerekebilir." -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "Raporda yeni işaretlemeler yapmak yerine bunları stdout'a yazın." -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" @@ -367,33 +368,33 @@ "Raporun son dökümü ile bir interaktif gdb oturumu başlat (-o yoksayılır; " "raporun üzerine yazmaz)" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" "Asıl raporu değiştirmek yerine düzeltilmiş raporu verilen dosyaya yaz" -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "Kutup yığınını küme izleme düzeltmesinden sonra rapordan geri al" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "Raporun ÇekirdekDosyası'nı Geçersiz Kıl" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "Raporun çalıştırılabilir yolunu geçersiz kıl (ExecutablePath)" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "Raporun ProcMap'lerini Geçersiz Kıl" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "Raporların Yedek bilgisini onar" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -410,26 +411,26 @@ "bu durumda yalnızca şu anda çalışan dağıtımda meydana gelen çökmelerin " "kaynağına gidebilir." -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "Paketler sandbox içine kurulurken indirme/yüklemeyi raporla" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "Yığın işlemi için kayıt iletilerinin başına zaman etiketleri ekle" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" "Raporlarda kaynağı tanımlanmış üçüncü parti depoları oluştur ve kullan" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "Sandbox içine indirilmiş paketler için önbellek dizini" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." @@ -437,7 +438,7 @@ "Açılmamış paketlerin dizini. Sonraki çalıştırmalar, daha önceden indirilmiş " "herhangi paketin de bu sandbox'a çıkartılacağını varsayacak." -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " @@ -447,7 +448,7 @@ "çökme ID'si belirlenirken kaynağına ulaşılmış yığın izlerinini yüklemede " "kullanılır. (Eğer -g, -o veya -s belirtiymediyse)" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." @@ -455,27 +456,27 @@ "Yeniden oluşturulmuş yığın izlerini göster ve bunları çökme veritabanına " "göndermeden önce onay al." -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "Kopya sqlite veritabanının yolu (varsayılan: kopya kontrolü yok)" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "-S olmaksızın -C kullanamazsınız. Durduruluyor." #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "Eklenti olarak gönderilsinler mi? [y/n]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "Bu paket doğru yüklenmiş gibi görünmüyor." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " @@ -484,8 +485,8 @@ "Bu resmi bir %s paketi değil. Lütfen herhangi bir üçüncü parti paketini " "kaldırıp tekrar deneyin." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -498,26 +499,26 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "bilinmeyen program" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "Üzgünüm, \"%s\" programı beklenmedik şekilde kapandı" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "%s'de problem" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." @@ -525,55 +526,55 @@ "Bilgisayarınız otomatik olarak sorunu analiz etmek ve geliştiricilere rapor " "göndermek için yeterli boş belleğe sahip değil." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "Geçersiz sorun raporu" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "Bu hata raporuna erişmeye izniniz yok." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "Hata" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "Bu raporu işlemek için yeterli disk alanı yok." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "Hiçbir paket belirtilmemiş" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "" "Bir paket veya PID belirtmelisiniz. Daha fazla bilgi için --help çıktısına " "bakın." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "İzin verilmedi" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." @@ -581,44 +582,44 @@ "Belirtilen süreç size ait değil. Lütfen bu programı süreç sahibi veya root " "olarak çalıştırın." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "Geçersiz PID" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "Belirlenen işlem ID'si bir programa ait değil." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "Symptom betiği %s etkin bir paket tanımlamadı" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "%s pakedi bulunamadı" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "Rapor oluşturulamıyor" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "Sorun raporu güncelleniyor" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -630,8 +631,8 @@ "\n" "Lütfen ''apport-bug'' kullanarak yeni bir rapor oluşturun." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -652,30 +653,30 @@ "\n" "Gerçekten devam etmek istiyor musunuz?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "Hiçbir ek bilgi toplanmadı." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "Ne tür bir sorun bildirmek istiyorsunuz?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "Bilinmeyen belirti" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "\"%s\" belirtisi bilinmiyor." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." @@ -683,37 +684,37 @@ "Bu iletiyi kapattıktan sonra lütfen bununla ilgili sorunu bildirmek için bir " "uygulama penceresine tıklayın." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "xprop, pencrenin işlem kimliğini saptamada başarısız oldu" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "%prog " -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "Paket adı belirtin." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "Rapora fazladan bir etiket ekleyin. Birçok kez belirtilmiş olabilir." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " @@ -723,18 +724,18 @@ "-pid gerektirir. Eğer hiçbiri belirtilmezse, bilinen belirtilerin listesini " "göster. (Kastedilen; eğer tek bir argüman verilirse.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "Bir sorunu bildirmek için hedef olarak bir pencereye tıklayın." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "Hata güncelleme kipinde başlat. Seçime bağlı --package alınabilir." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" @@ -742,8 +743,8 @@ "Bir belirti için hata raporu dosyala. (Kastedilen; eğer belirti adı sadece " "argüman olarak verilirse.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" @@ -751,8 +752,8 @@ "--dosya-hata modunda paket adını belirtin. Bir -pid belirtilmişse, bu " "seçenek opsiyoneldir. (Paket adı tek argüman olarak verilmişse uygulanır.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " @@ -762,13 +763,13 @@ "belirtilmişse, hata raporu daha fazla ayrıntı içerecektir.(PID 'in tek " "parametre olarak verilmesi durumu kastedilmiştir)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "Belirtilen pid (program id) askıdaki bir uygulama" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " @@ -777,8 +778,8 @@ "Hata raporunu %s'te beklemekte olanlar yerine .apport veya .crash " "dosyalarından bildirin. (Eğer dosya adı verilen tek argüman ise)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " @@ -787,45 +788,45 @@ "Hata belirtme kipinde, toplanan bilgileri raporlamak yerine onları bir " "dosyaya kaydedin. Bu dosya daha sonra farklı bir makineden raporlanabilir." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "Apport sürüm numarasını yazdır." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "" "Bu, çökmeyi incelemek için bir uçbirim penceresinde \"apport-retrace\" " "komutunu çalıştıracak." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "gdb oturumunu çalıştır" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "gdb oturumunu böcek temizleme simgelerini indirmeden çalıştır" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "%s dosyasını tümüyle sembolik küme iziyle güncelle" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "Bu problem raporu, artık yüklü olmayan bir programa ait." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " @@ -833,71 +834,71 @@ msgstr "" "Çökme olduktan sonra değişime uğrayan %s yazılımıyla ilgili sorun oluştu." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "Bu sorun raporu hasarlı, bu nedenle işlenemiyor." #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "Rapor kurulmamış bir pakete ait." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "Bu sorun raporunu işlemeye çalışırken bir hata oluştu:" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "Paket ya da kaynak kod paketi adı belirlenemedi." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "Ağ tarayıcı başlatılamıyor" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "%s açmak için ağ tarayıcı başlatılamıyor." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "Lütfen %s hata takip sistemi için hesap bilgilerinizi girin." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "Ağ sorunu" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" "Çöküş veritabanına bağlanılamıyor, lütfen internet bağlantınızı kontrol edin." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "Yetersiz bellek" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "" "Sisteminiz bu çökme raporunu işlemek için yeterli belleğe sahip değil." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -908,14 +909,14 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "Sorun önceden bildirilmiş" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " @@ -925,8 +926,8 @@ "bildirilmiş. Lütfen geliştiricilere yardımcı olabilecek ek bir bilgi ekleyip " "ekleyemeyeceğinize bakın." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "Bu sorun daha önce geliştiricilere bildirildi. Teşekkür ederiz!" --- apport-2.20.3.orig/po/ug.po +++ apport-2.20.3/po/ug.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:15+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:47+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: ug\n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "Apport" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr "كەچۈرۈڭ، ئىچكى خاتالىق يۈز بەردى." -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "" "ئەگەر تېخىمۇ كۆپ مەسىلىنى بايقىسىڭىز، كومپيۇتېرنى قايتا قوزغىتىشنى سىناڭ." @@ -59,11 +59,11 @@ msgid "Ignore future problems of this program version" msgstr "بۇ پروگرامما نەشرىنىڭ كەلگۈسىدىكى مەسىلىلىرىگە پەرۋا قىلما" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "تەپسىلاتلارنى كۆرسەت" @@ -71,21 +71,21 @@ msgid "_Examine locally" msgstr "يەرلىكتە تەكشۈر(_E)" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "تاقاق پېتى قالدۇر" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "داۋاملاشتۇر" @@ -101,9 +101,10 @@ "سىز مەلۇم قىلغان مەسىلىنى ئىجادىيەتچىلەرنىڭ تۈزىتىشىگە ياردىمى بولسۇن دەپ " "ئۇچۇرلار توپلاندى." +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "مەسىلىلەر ھەققىدىكى ئۇچۇرلارنى يېڭىلاۋاتىدۇ" @@ -111,8 +112,8 @@ msgid "Uploading problem information" msgstr "مەسىلە ھەققىدىكى ئۇچۇرلارنى يۈكلەۋاتىدۇ" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -124,103 +125,103 @@ msgid "Apport crash file" msgstr "Apport چاتاق ھۆججىتى" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "(ئىككىلىك سانلىق-مەلۇمات)" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "كەچۈرۈڭ، پروگرامما %s تاسادىپىي توختاپ قالدى." -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "كەچۈرۈڭ، %s تاسادىپىي تاقالدى." -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "كەچۈرۈڭ، %s ئىچكى خاتالىققا يولۇقتى." -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "بۇ مەلۇماتنى ئىجادىيەتچىگە ئەۋەتسۇنمۇ؟" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "يوللا" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "مەجبۇرىي يېپىلغان" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "قايتا ئىجرا قىل" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "پروگرامما %s جاۋاب قايتۇرۇشتىن توختىدى." -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "پروگرامما «%s» جاۋاب قايتۇرۇشتىن توختىدى." -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "بوغچا: %s" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "كەچۈرۈڭ، يۇمشاق دېتال ئورناتقاندا بىر خاتالىق كۆرۈلدى." -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "پروگرامما %s نىڭدا بىر ئىچكى خاتالىق يۈز بەردى." -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "بۇ %s ئەپ تاسادىپىي تاقالدى." -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "بۇ تۈردىكى كەلگۈسىدىكى مەسىلىگە سەل قاراش" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "تەپسىلاتلارنى يوشۇر" @@ -233,24 +234,25 @@ msgid "Destination directory exists and is not empty." msgstr "نىشان مۇندەرىجە بار ھەم بوش ئەمەس." -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "ئىشلەتكۈچى ئاتى:" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "ئىم:" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "چاتاق ھەققىدىكى ئۇچۇرلارنى توپلاۋاتىدۇ" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "مەسىلىلەرگە ئائىت ئۇچۇرلارنى توپلاۋاتىدۇ" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." @@ -258,7 +260,7 @@ "ئىجادىيەتچىنىڭ پروگرامما ئىقتىدارىنى ياخشىلىشىغا قۇلايلىق يارىتىش ئۈچۈن، " "توپلانغان ئۇچۇرلار ئىجادىيەتچىگە يوللىنىدۇ. بۇنىڭغا بىرقانچە مىنۇت كېتىدۇ." -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "چاتاق ھەققىدىكى ئۇچۇرلارنى يۈكلەۋاتىدۇ" @@ -283,13 +285,13 @@ "Please enter your password to access problem reports of system programs" msgstr "ئىمنى كىرگۈزۈپ سىستېما مەسىلە دوكلاتىنى كۆرۈڭ." -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "مەسىلىنى مەلۇم قىلىش..." -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "خاتالىقنى ئىجادىيەتچىگە مەلۇم قىلىدۇ" @@ -339,9 +341,8 @@ "ئەسلەك ھالقىشنى بايقاش ئۈچۈن ئىجراچان پىروگراممىلار valgrind ئەسلەك تەكشۈرۈش " "قورالىنىڭ ئاستىدا ئىجرا قىلىنىدۇ" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "" @@ -353,17 +354,17 @@ msgid "Error: %s is not an executable. Stopping." msgstr "خاتالىق: %s نى ئىجرا قىلغىلى بولمايدۇ. توختىتىۋاتىدۇ." -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "" "سىستېمىڭىزنىڭ تۇراقسىز بولۇپ قېلىش ئېھتىماللىقى بار، قايتا قوزغىتىش " "زۆرۈرىيىتى باردەك قىلىدۇ." -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "بۇ يېڭى چىققانلىرىنى مەلۇماتقا يازماي stdout قا يازسۇن." -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" @@ -371,34 +372,34 @@ "مەلۇماتنىڭ غول تۆكمىسىگە نىسبەتەن تەسىرلىشىشچان gdb ئەڭگىمەسىنى باشلايدۇ(-o " "غا پەرۋا قىلمايدۇ؛ مەلۇماتنى قاپلىمايدۇ)" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "ئەسلىدىكى مەلۇماتقا يازماي كۆرسىتىلگەن ھۆججەتكە يازسۇن." -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "" "stack ئىزلىشى قايتا ھاسىللانغاندىن كېيىن، غول تۆكمىنى(core dump) مەلۇماتتىن " "چىقىرىۋېتىش" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "دوكلاتنىڭ CoreFile نى قاپلاش" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "دوكلاتنىڭ ExecutablePath نى قاپلاش" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "دوكلاتنىڭ ProcMaps نى قاپلاش" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "دوكلاتنىڭ بوغچا ئۇچۇرىنى قايتا قۇرۇش" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -412,29 +413,29 @@ "سىستېما بەلگىلىمىسىڭىز، سىستېما سەپلىمىسىنى ئىشلىتىدۇ، شۇنىڭ بىلەن ئىجرا " "قىلىنىۋاتقان سىستېمىنى ھالاك قىلىدۇ." -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" "بوغچىلارنى قۇم خالتىسى ئىچىگە ئورناتقاندىكى چۈشۈرۈش/ئورنىتىش جەريانىنى مەلۇم " "قىلىش" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "" "ئۇچۇر خاتىرىلەشتىن بۇرۇن ۋاقىتنى خاتىرىلەڭ، بۇ قېتىملىق مەشغۇلاتنى " "تەمىنلەيدۇ." -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "قۇم خالتىسى ئىچىگە چۈشۈرۈلگەن بوغچىلارنىڭ غەملەك مۇندەرىجىسى" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." @@ -442,7 +443,7 @@ "يېيىلمىغان بوغچىلارنىڭ مۇندەرىجىسى. كېيىن ئىجرا قىلىدىغان چاغدا، چۈشۈرۈلگەن " "بوغچىلار مۇشۇ يەرگە يېيىلىدۇ." -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " @@ -453,7 +454,7 @@ "ئۇچۇرى ئۈچۈن ئىشلىتىلىدۇ. (ئىشلەتكۈچى -g, -o, ياكى -s نى بەلگىلىگەن " "بولمىسىلا)" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." @@ -461,29 +462,29 @@ "قايتۇرغان ئىزلاش ئۇچۇرىنى كۆرسىتىدۇ ھەمدە يىمىرىلىش ساندىنىغا يوللاش " "يوللىماسلىقنى جەزملەشنى سورايدۇ." -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" "تەكرارلانغان sqlite ساندىنىنىڭ يولى.(كۆڭۈلدە تەكرارلىنىشنى تەكشۈرمەيدۇ)" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "" "سىز -S نى بەلگىلىمەي تۇرۇپ -C تاللانمىنى ئىشلىتەلمەيسىز، توختىتىۋاتىدۇ." #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "بۇ قوشۇلما ھۆججەتلەرنى ئەۋەتسە بولامدۇ؟[y/n]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "مەزكۇر بوغچا توغرا ئورنىتىلمىغاندەك قىلىدۇ" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " @@ -491,8 +492,8 @@ msgstr "" "بۇ رەسمىي %s بوغچىسى ئەمەس. ئۈچىنچى تەرەپ بوغچىسىنى چىقىرىۋېتىپ، قايتا سىناڭ." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -505,26 +506,26 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "نامەلۇم پروگرامما" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "كەچۈرۈڭ، پروگرامما «%s» ئويلىمىغان يەردىن تاقىلىپ قالدى" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "مەسىلە %s نىڭدا" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." @@ -532,54 +533,54 @@ "مەسىلىنى ئاپتوماتىك ئانالىز قىلىش ۋە ئىجادىيەتچىگە مەلۇمات يوللاشقا كېرەكلىك " "ئەسلەك يېتەرلىك ئەمەس ئىكەن." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "مەلۇمات ئىناۋەتسىز" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "بۇ مەسىلىنى مەلۇم قىلىش ھوقۇقىڭىز يوق." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "خاتالىق" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "مەزكۇر مەلۇماتنى بىر تەرەپ قىلىشقا كېرەكلىك دىسكا بوشلۇقى يوق." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "بوغچا كۆرسىتىلمىگەن." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "" "بوغچا ياكى بىر PID نى كۆرسىتىڭ. تەپسىلاتلار ئۈچۈن --help نى ئىشلىتىڭ." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "ھوقۇقىڭىز يەتمىدى" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." @@ -587,44 +588,44 @@ "بۇ سىزنىڭ پروگراممىڭىز ئەمەس. مەزكۇر پروگراممىنى ئۆزىڭىزنىڭ ياكى root نىڭ " "ھوقۇقىدا ئىجرا قىلدۇرۇڭ." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "ئىناۋەتسىز PID" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "كۆرسىتىلگەن PID مەزكۇر پروگراممىنىڭ PID ئەمەس." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "ئەھۋال قوليازما %s تەسىر كۆرسىتىدىغان بوغچىنى بەلگىلىمىگەن" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "بوغچا %s مەۋجۇت ئەمەس" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "مەلۇمات قۇرالمىدى" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "مەلۇماتىنى يېڭىلاۋاتىدۇ" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -636,8 +637,8 @@ "\n" "«apport-bug» نى ئىشلىتىپ يېڭىدىن مەلۇمات تەييارلاڭ." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -656,67 +657,67 @@ "\n" "راستلا داۋاملاشتۇرامسىز؟" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "قوشۇمچە ئۇچۇرلار توپلانمىدى." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "قانداق مەسىلىنى مەلۇم قىلماقچى؟" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "نامەلۇم ھادىسە" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "ھادىسە «%s» نامەلۇم." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." msgstr "" "ئۇچۇرنى ياپقاندىن كېيىن پروگرامما كۆزنىكىنى چېكىپ، بۇ مەسىلىنى مەلۇم قىلىڭ." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "xprop كۆزنەكنىڭ ئىجرا ID سىنى تېپىشتا مەغلۇپ بولدى" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "%prog <مەلۇمات نومۇرى>" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "بوغچا ئاتىنى كۆرسىتىپ بېرىڭ." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "دوكلاتقا يېڭىدىن خەتكۈش قوشۇڭ، كۆپ قېتىم بەلگىلەشكە بولىدۇ." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " @@ -727,20 +728,20 @@ "كۆرۈلگەن ئالامەتلەرنىڭ تىزىمىنى كۆرسىتىدۇ. (پەقەت يالغۇز ئارگۇمېنت " "بېرىلگەندىلا.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "خاتالىق دوكلاتىنى تولدۇرۇش ئۈچۈن كۆزنەكنى نىشان قىلىپ چېكىڭ" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "" "كەمتۈك يېڭىلاش ھالىتىدە قوزغىتىش. --package دېگەن تاللانمىنى ئىشلىتىشكە " "بولىدۇ." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" @@ -748,8 +749,8 @@ "ھادىسە ھەققىدە مەلۇمات تەييارلاڭ. (Implied if symptom name is given as only " "argument)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" @@ -757,8 +758,8 @@ "--file-bug ھالىتىدە بوغچا ئاتىنى كۆرسىتىڭ. ئەگەر --pid كۆرسىتىلگەن بولسا، " "بۇنى كۆرسەتمىسىمۇ بولىدۇ.(Implied if package name is given as only argument.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " @@ -768,14 +769,14 @@ "كۆرسىتىلسە، كەمتۈك مەلۇماتىغا تېخىمۇ كۆپ ئۇچۇرلار قوشۇلىدۇ. (Implied if pid " "is given as only argument.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "" "تەمىنلەنگەن pid بولسا بىر ئېسىلىپ قالغان(توختاپ قالغان) پروگرامما ئىكەن." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " @@ -785,8 +786,8 @@ ".apport ياكى .crash ھۆججىتىنى ئىشلىتىپ يوللاش(پەقەت ھۆججەت ئاتى ئارگۇمېنت " "شەكىلدە بېرىلگەندىلا.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " @@ -795,115 +796,115 @@ "كەمتۈك يېزىش ھالىتىدە، توپلانغان ئۇچۇرلارنى مەلۇم قىلماي ھۆججەتكە ساقلاپ " "قويۇشقا، بۇ ھۆججەتنى كېيىن باشقا كومپيۇتېر ئارقىلىق يوللاشقىمۇ بولىدۇ." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "Apport نىڭ نەشر نومۇرىنى بېسىپ چىقىرىدۇ." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "" "crash نى تەكشۈرۈش ئۈچۈن apport-retrace تېرمىنال كۆزنىكىدە ئىجرا بولىدۇ." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "gdb ئەڭگىمەسىنى ئىجرا قىلىش" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "سازلاش بەلگىلىرىنى چۈشۈرمەيلا gdb ئەڭگىمەسىنى ئىجرا قىلىش" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "%s نى تولۇق بەلگىلەر بىلەن يېڭىلاش" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "بۇ دوكلات زادىلا ئورنىتىلىپ باقمىغان پروگراممىغا ئىشلىتىلىدۇ." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " "occurred." msgstr "توقۇنۇشتا ئۆزگەرگەن پروگرامما %s تە خاتالىق كۆرۈلدى." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "بوغچا بۇزۇلغان بولغاچقا بىر تەرەپ قىلغىلى بولمىدى." #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "مەلۇمات ئورنىتىلمىغان بوغچىغا تەۋە ئىكەن." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "" "بۇ مەسىلە ھەققىدىكى مەلۇماتنى بىر تەرەپ قىلاي دېگەندە خاتالىق يۈز بەردى:" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "بوغچا ياكى مەنبە كود بوغچىسىنىڭ نامىنى بېكىتكىلى بولمىدى." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "توركۆرگۈنى قوزغاتقىلى بولمىدى" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "%s نى كۆرىدىغان توركۆرگۈنى قوزغاتقىلى بولمىدى." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "كەمتۈك باشقۇرۇش سىستېمىسى %s غا ھېسابات ئۇچۇرىڭىزنى كىرگۈزۈڭ." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "توردىكى مەسىلە" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "crash ساندىنىغا باغلىنالمىدى، ئىنتېرنېت باغلىنىشىنى تەكشۈرۈپ كۆرۈڭ." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "ئەسلەك يېتىشمىدى" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "" "سىستېمىڭىزدا مەزكۇر crash مەلۇماتىنى بىر تەرەپ قىلىشقا يېتەرلىك ئەسلەك يوق." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -914,14 +915,14 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "مەسىلە ئاللىقاچان ئايدىڭلاشقان" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " @@ -931,8 +932,8 @@ "كۆرۈڭ، ئەگەر سىزنىڭ مەلۇماتىڭىزدا تېخىمۇ كۆپرەك ئۇچۇرلار بار بولسا " "ئىجادىيەتچىلەر ئۈچۈن تېخىمۇ پايدىلىق بولاتتى." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "مەسىلە ئىجادىيەتچىلەرگە مەلۇم قىلىندى. سىزگە تەشەككۈر!" --- apport-2.20.3.orig/po/uk.po +++ apport-2.20.3/po/uk.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:15+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:47+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: uk\n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr "Вибачте, сталася внутрішня помилка." -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "" @@ -57,11 +57,11 @@ msgid "Ignore future problems of this program version" msgstr "Ігнорувати подальші збої у цій версії програми" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "" @@ -69,21 +69,21 @@ msgid "_Examine locally" msgstr "" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "Залишити закритим" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "" @@ -99,9 +99,10 @@ "Проводиться збір інформації, яка може допомогти розробникам виправити цю " "помилку." +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "Вивантаження даних щодо проблеми" @@ -109,8 +110,8 @@ msgid "Uploading problem information" msgstr "Передача інформації про помилку" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -122,103 +123,103 @@ msgid "Apport crash file" msgstr "Пошкодженя файлу Apport" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "(двійкові дані)" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "Вибачте, застосунок %s неочікувано зупинився." -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "" -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "Вибачте, у %s сталася внутрішня помилка." -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "Надіслати розробникам звіт про помилку?" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "Примусове закриття" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "Застосунок %s перестав відповідати." -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "Програма \"%s\" перестала відповідати." -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "Пакунок: %s" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "Вибачте, під час встановлення сталася помилка." -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "У додатку %s сталася внутрішня помилка." -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "" -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "Ігнорувати такі проблеми у майбутньому" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "" @@ -231,24 +232,25 @@ msgid "Destination directory exists and is not empty." msgstr "Каталог адресату існує і не є порожнім." -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "Збір інформації про помилку" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." @@ -256,7 +258,7 @@ "Зібрані дані можна надіслати розробникам з метою покращення програми. Ви " "можете витратити на це декілька хвилин." -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "" @@ -281,13 +283,13 @@ msgstr "" "Уведіть свій пароль для доступу до звітів про помилки у системних програмах" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "Повідомити про помилку..." -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "Звітувати про збій розробникам" @@ -339,9 +341,8 @@ "виконуваний файл, який запускається під контролем valgrind memcheck для " "визначення витоків пам’яті" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "" @@ -353,16 +354,16 @@ msgid "Error: %s is not an executable. Stopping." msgstr "Помилка: %s — не виконуваний файл. Зупинка." -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "" "Система може стати нестабільною, можливо буде потрібне перезавантаження." -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "Не вкладайте нові записи у звіт, а долучайте їх до stdout." -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" @@ -370,33 +371,33 @@ "Початок інтерактивної GDB сесії з дампом у звіті (-o ігнорувати, не " "записувати у звіт)" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" "Записати змінений звіт до вказаного файлу замість заміни оригінального звіту" -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "Зняти дамп зі звіту після трасування стеку регенерації" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "Перекрити звіти CoreFile" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "Перекрити звіти ExecutablePath" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "Перекрити звіти ProcMaps" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "Перебудувати звітовий пакунок інформації" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -413,30 +414,30 @@ "разі виявлення аварійних ситуацій, що виникли у випуску системи, яка працює " "на дану мить." -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" "Сповіщати про хід виконання завантаження/встановлення пакунків у тимчасовому " "середовищі" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" "Створення і використання сторонніх сховищ на основі початкових, вказаних у " "звітах" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "" "Тека для збереження пакунків, що заванатажуються у тимчасове середовище" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." @@ -444,7 +445,7 @@ "Директорія для розпакування пакунків. При наступних запусках усі вже " "завантажені пакунки будуть розпаковуватися у це ізольоване оточення." -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " @@ -454,7 +455,7 @@ "Використовується лише якщо вказано ID краху для відсилання трасувань стеку " "(за умови, що ні -g, -o , ані -s не вказано)" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." @@ -462,28 +463,28 @@ "Показати перетрасований стек та запитати підтвердження перед відправленням " "його у базу аварій." -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" "Шлях до дублікату бази даних sqlite (типово: немає дублікату для перевірки)" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "Неможна використовувати -C без -S. Зупинка." #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "Відіслати їх як вкладення? [так/ні]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "Схоже, що цей пакунок встановлено невірно" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " @@ -492,8 +493,8 @@ "Даний пакунок %s не є офіційним. Будь ласка, вилучіть усі сторонні пакунки " "та повторіть знову." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -506,26 +507,26 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "невідома програма" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "На жаль, програма \"%s\" несподівано закрилася" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "Помилка у %s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." @@ -533,55 +534,55 @@ "На вашому комп'ютері недостатньо вільної пам'яті для автоматичного аналізу " "проблеми та надсилання розробникам звіту." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "Неправильний звіт про помилку" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "Ви не маєте доступу до цього звіту." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "Помилка" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "Недостатньо місця на диску для обробки цього звіту." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "Не вказано пакунок" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "" "Необхідно вказати пакунок або PID. Наберіть --help для отримання додаткової " "інформації." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "У доступі відмовлено" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." @@ -589,44 +590,44 @@ "Зазначений процес Вам не належить. Будь ласка, запустіть програму як власник " "процесу або як root." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "Неправильний PID" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "Зазначений процес ID не належить до програми." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "Симптоматичний скрипт %s не може визначити постраждалих пакунків" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "Пакунку %s не існує" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "Неможливо створити звіт" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -634,8 +635,8 @@ "Please create a new report using \"apport-bug\"." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -654,30 +655,30 @@ "\n" "Ви справді бажаєте продовжити?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "Не зібрано додаткової інформації." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "Про яку проблему ви бажаєте повідомити?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "Невідомий симптом" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "Симптом «%s» не відомий" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." @@ -685,37 +686,37 @@ "Після того, як сховаєте дане повідомлення, будь-ласка, клацніть на вікно " "програми для того, щоб відіслати звіт про помилку." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "Помилка xprop: не вдалося визначити ID процесу вікна" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "Вкажіть назву пакунку." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "Додати додаткову мітку до звіту. Може бути задано декілька разів." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" "%prog [параметри] [симптом|pid|пакунок|шлях програми|.apport/.crash file]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " @@ -725,19 +726,19 @@ "pid, або просто --pid. Якщо ні одного не вказано, показати список відомих " "симптомів. (Мається на увазі якщо задано один аргумент.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "" "Запустити у режимі оновлення помилки. Може виконуватися з ключем --package." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" @@ -745,8 +746,8 @@ "Відправити звіт про помилку з симптомом. (Мається на увазі, якщо ім'я " "симптому дано як єдиний аргумент.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" @@ -754,8 +755,8 @@ "Вкажіть назву пакунку у режимі --file-bug. Необов’язково якщо вказано --pid. " "(Припустимо що назва пакунку вказана у якості єдиного аргументу)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " @@ -765,13 +766,13 @@ "про помилку міститиме більше інформації. (Мається на увазі, що вказано " "єдиний аргумент- pid.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "Вказаний ідентифікатор належить процесу, який не відповідає." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " @@ -780,8 +781,8 @@ "Повідомити про крах із наданого файлу .apport або .crash замість файлів у " "черзі в %s. (За умови, що файл надано у якості єдиного параметру.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " @@ -790,117 +791,117 @@ "У режимі збору помилок замість надсилати зібрану інформацію, збережіть її у " "файл. Цей файл можна буде відправити пізніше з іншого комп'ютера." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "Надрукувати номер версії Apport ." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "Запустити сеанс gdb" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "Запустити сеанс gdb, оминувши завантаження символів відлагодження" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "" "Цей звіт про помилку належить до програми, якої більше немає у системі." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " "occurred." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "Цей звіт про помилку пошкоджено та не може бути оброблено." #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "Звіт належить до пакунку, якого не встановлено." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "Сталася помилка при спробі обробки звіту:" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "Не вдалося визначити ім'я пакунку або ім'я пакунку з вихідним кодом." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "Неможливо запустити оглядач тенет" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "Неможливо запустити оглядач тенет, щоб відкрити %s." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "" "Будь ласка, уведіть інформацію про обліковий запис для %s системи стеження " "за помилками" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "Проблема з мережею" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" "Не вдається під'єднатися до пошкодженої бази даних, будь ласка, перевірте " "з'єднання з мережею Інтернет." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "Пам'ять вичерпано" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "У системі недостатньо пам'яті для обробки цього звіту про помилку." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -911,14 +912,14 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "Про помилку вже відомо" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " @@ -928,8 +929,8 @@ "ласка, перевірте, чи можете ви додати до нього іншу корисну інформацію, яка " "могла б допомогти розробникам." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "Про цю проблему розробникам вже відомо. Дякуємо!" --- apport-2.20.3.orig/po/uz.po +++ apport-2.20.3/po/uz.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:15+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:47+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: uz\n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr "" -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "" @@ -57,11 +57,11 @@ msgid "Ignore future problems of this program version" msgstr "" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "" @@ -69,21 +69,21 @@ msgid "_Examine locally" msgstr "" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "Ёпилган қолдирилсин" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "Давом этилсин" @@ -97,9 +97,10 @@ "you report." msgstr "" +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "" @@ -107,8 +108,8 @@ msgid "Uploading problem information" msgstr "" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -118,103 +119,103 @@ msgid "Apport crash file" msgstr "" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "" -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "" -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "%s'да ички хато рўй берди." -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "Тузувчиларга муаммо ҳақида хабар юборилсинми?" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "Юбориш" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "Қайта ишга туширилсин" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "" -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "" -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "Пакет: %s" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "Дастур ўрнатилганда муаммо рўй берди." -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "%s дастурида ички хато рўй берди." -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "%s дастури тўсатдан ёпилди." -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "" @@ -227,30 +228,31 @@ msgid "Destination directory exists and is not empty." msgstr "" -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." msgstr "" -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "" @@ -273,13 +275,13 @@ "Please enter your password to access problem reports of system programs" msgstr "" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "" -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "" @@ -320,9 +322,8 @@ "detection" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "" @@ -332,46 +333,46 @@ msgid "Error: %s is not an executable. Stopping." msgstr "" -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -381,72 +382,72 @@ "be able to retrace crashes that happened on the currently running release." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " "neither -g, -o, nor -s are specified)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "" #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " "and try again." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -455,121 +456,121 @@ "%s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -577,8 +578,8 @@ "Please create a new report using \"apport-bug\"." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -590,230 +591,230 @@ "Do you really want to proceed?" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " "a single argument is given.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " "ones in %s. (Implied if file is given as only argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " "machine." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " "occurred." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "" #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -821,22 +822,22 @@ "%s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " "helpful for the developers." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "" --- apport-2.20.3.orig/po/vi.po +++ apport-2.20.3/po/vi.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:15+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:47+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: vi\n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr "" -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "" @@ -57,11 +57,11 @@ msgid "Ignore future problems of this program version" msgstr "" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "" @@ -69,21 +69,21 @@ msgid "_Examine locally" msgstr "" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "" @@ -99,9 +99,10 @@ "Thông tin đang được thu thập, nó có thể giúp các nhà phát triển sửa vấn đề " "bạn báo cáo." +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "Tải lên thông tin về vấn đề" @@ -109,8 +110,8 @@ msgid "Uploading problem information" msgstr "Tải lên thông tin về vấn đề" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -122,103 +123,103 @@ msgid "Apport crash file" msgstr "Báo cáo tệp lỗi" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "(dữ liệu nhị phân)" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "" -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "" -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "" -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "Gửi báo cáo vấn đề tới những người phát triển?" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "" -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "" -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "" -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "" -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "" -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "" @@ -231,30 +232,31 @@ msgid "Destination directory exists and is not empty." msgstr "Thư mục đích tồn tại và không rỗng." -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "Thu thập thông tin về vấn đề" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." msgstr "" -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "" @@ -277,13 +279,13 @@ "Please enter your password to access problem reports of system programs" msgstr "" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "Báo cáo một vấn đề..." -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "Báo cáo một trục trặc tới nhà phát triển" @@ -324,9 +326,8 @@ "detection" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "" @@ -336,16 +337,16 @@ msgid "Error: %s is not an executable. Stopping." msgstr "" -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "" "Hệ thống của bạn có thể trở nên không ổn định bây giờ và cần khởi động lại." -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "Không đưa dấu vết mới vào báo cáo, nhưng in chúng ra stdout." -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" @@ -353,34 +354,34 @@ "Bắt đầu một phiên gỡ lỗi tương tác với gdb sử dụng các thông tin lưu lại " "được khi chương trình gặp lỗi. (-o ignored: không viết lại báo cáo)" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "Ghi báo cáo đã sửa đổi tới tệp đưa ra thay vì thay đổi báo cáo gốc" -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "" "Xóa các thông tin lưu lại được khi chương trình gặp lỗi khỏi báo cáo sau khi " "đã ghi lại vết của ngăn xếp." -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "Ghi đè CoreFile của báo cáo" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "Ghi đè ExecutablePath của báo cáo" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "Ghi đè ProcMaps của báo cáo" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "Tạo lại thông tin gói của báo cáo" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -390,38 +391,38 @@ "be able to retrace crashes that happened on the currently running release." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " "neither -g, -o, nor -s are specified)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." @@ -429,36 +430,36 @@ "Hiển thị ngăn xếp dấu vết dò lại được và yêu cầu xác nhận trước khi gửi " "chúng tới cơ sở dữ liệu lỗi." -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" "Đường dẫn tới bản sao cơ sở dữ liệu sqlite (mặc định: không kiểm tra bản sao)" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "" #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "Đồng ý gửi chúng như những đính kèm? [y/n]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " "and try again." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -471,26 +472,26 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "chương trình không xác định" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "Xin lỗi, chương trình \"%s\" đã kết thúc bất ngờ" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "Vấn đề trong %s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." @@ -498,54 +499,54 @@ "Máy tính của bạn không đủ bộ nhớ trống để tự động phân tích vấn đề và gửi " "báo cáo tới các nhà phát triển." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "Báo cáo vấn đề không hợp lệ" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "Bạn không được phép truy cập báo cáo vấn đề này." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "Lỗi" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "Không đủ dung lượng đĩa để thực hiện báo cáo này." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "Chưa gói nào được xác định" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "" "Bạn cần xác định một gói hoặc một PID. Xem --help để biết thêm thông tin." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "Không đủ quyền truy cập" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." @@ -553,44 +554,44 @@ "Tiến trình không phải của bạn. Vui lòng chạy chương trình với tài khoản của " "chủ tiến trình hoặc với tài khoản quản trị root" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "PID không hợp lệ" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "ID của tiến trình không phải của một chương trình." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "Gói %s không tồn tại" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -598,8 +599,8 @@ "Please create a new report using \"apport-bug\"." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -611,67 +612,67 @@ "Do you really want to proceed?" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "Bạn muốn báo cáo vấn đề loại nào?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "Dấu hiệu không xác định" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "Không biết dấu hiệu \"%s\"" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" "%prog [tùy chọn] [dấu hiệu|pid|gói|đường đẫn chương trình|.apport/.crash " "file]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " @@ -681,18 +682,18 @@ "chỉ là --pid. Nếu không cách nào trong hai cách trên được sử dụng, hiển thị " "danh sách những dấu hiệu đã biết. (Mặc định nếu một tham số được đưa ra.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" @@ -700,8 +701,8 @@ "Đệ trình báo cáo lỗi về một triệu chứng. (Mặc định nếu tên triệu chứng là " "tham số duy nhất.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" @@ -709,21 +710,21 @@ "Xác định tên gói trong chế độ --file-bug. Tùy chọn này nếu một --pid được " "xác định. (Mặc định nếu tên gói được đưa ra như là tham số duy nhất.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " @@ -732,121 +733,121 @@ "Báo cáo lỗi sử dụng các tệp .apport hoặc .crash thay vì sử dụng các tệp tạm " "trong %s. (Mặc định nếu tệp tin là tham số duy nhất.)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " "machine." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "In ra số phiên bản Trình báo lỗi" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "Báo cáo vấn đề này gắn với chương trình đã bị gỡ." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " "occurred." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "Báo cáo vấn đề này bị hỏng và không thể được thực hiện" #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "Báo cáo thuộc về một gói chưa được cài đặt." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "Không thể xác định tên của gói hoặc gói nguồn." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "Không thể bật trình duyệt web" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "Không thể bật trình duyệt web để mở %s." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "Vui lòng điền vào thông tin tài khoản cho hệ thống theo dõi lỗi %s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "Lỗi mạng" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" "Không thể kết nối tới cơ sở lỗi, vui lòng kiểm tra kết nối Internet của bạn." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "Hết bộ nhớ" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "Hệ thống của bạn không đủ bộ nhớ để thực hiện báo cáo lỗi này." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -857,14 +858,14 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "Vấn đề đã biết" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " @@ -874,8 +875,8 @@ "lòng kiểm tra nếu bạn có thể thêm bất cứ thông tin gì có ích cho những người " "phát triển." -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "" --- apport-2.20.3.orig/po/zh_CN.po +++ apport-2.20.3/po/zh_CN.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:16+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:47+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: \n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr "对不起,发生内部错误。" -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "如果您注意到更多问题,请尝试重新启动计算机。" @@ -57,11 +57,11 @@ msgid "Ignore future problems of this program version" msgstr "以后忽略此版本程序的问题" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "显示详细信息" @@ -69,21 +69,21 @@ msgid "_Examine locally" msgstr "本地检查(_E)" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "保持关闭状态" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "继续" @@ -97,9 +97,10 @@ "you report." msgstr "正在收集信息,这些信息将会帮助开发人员修复您报告的问题。" +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "上传问题信息" @@ -107,8 +108,8 @@ msgid "Uploading problem information" msgstr "正在上传问题信息" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -118,103 +119,103 @@ msgid "Apport crash file" msgstr "Apport 崩溃文件" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "(二进制数据)" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "对不起,应用程序 %s 意外停止。" -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "对不起,%s 已意外关闭。" -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "对不起,%s 出现了内部错误。" -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "向开发者发送问题报告?" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "发送" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "强制关闭" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "重新启动程序" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "应用程序 %s 停止响应。" -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "程序 %s 停止响应。" -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "软件包:%s" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "对不起,安装软件时出现问题。" -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "应用程序 %s 发生内部错误。" -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "应用程序 %s 已意外关闭。" -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "以后忽略此类错误" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "隐藏详细信息" @@ -227,30 +228,31 @@ msgid "Destination directory exists and is not empty." msgstr "目标目录存在且不为空。" -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "用户名:" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "密码:" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "正在收集问题信息" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "正在收集问题信息" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." msgstr "收集到的信息可以发送给开发者来改进程序。这可能要花费几分钟的时间。" -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "上传问题信息" @@ -273,13 +275,13 @@ "Please enter your password to access problem reports of system programs" msgstr "请输入您的密码以查看系统程序问题报告。" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "提交一份问题报告…" -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "向开发者报告一个故障" @@ -320,9 +322,8 @@ "detection" msgstr "该可执行文件运行 Valgrind MemCheck 工具下的内存泄漏检测" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "将其他软件包安装到沙盒(可多次加以指定)中" @@ -332,46 +333,46 @@ msgid "Error: %s is not an executable. Stopping." msgstr "错误:%s 不是可执行文件,停止。" -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "您的系统现在可能变得不稳定,可能需要重新启动。" -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "不把新的痕迹写入到报告,但是把它们写入到标准输出。" -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" msgstr "启动一个交互式的 gdb 进程并载入提交的崩溃信息 (-o 不重新生成报告)" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "将更改过的报告写入指定文件而非改变原始报告" -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "生成栈回溯后将内核转储从报告中删除" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "覆盖报告核心文件" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "覆盖报告执行路径" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "覆盖报告的进程表" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "重建报告的包信息" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -383,72 +384,72 @@ "构建临时沙盒,以及下载/安装必要的软件包和调试符号;如果没有该选项,则会假设该系统中已安装了必要的软件包和调试符号。此参数指向该打包系统配置库目录;如果指" "定 \"system\",则其将使用系统配置文件,但之后,其将只能够追溯当前正在运行的版本上发生的崩溃。" -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "在将软件包安装到沙盒中时,报告下载和安装的进度" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "为进行批量操作,请预先设置时间戳,以记录消息" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "根据报告中指定的来源创建并使用第三方软件仓库" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "下载到沙盒中软件包的缓存目录" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." msgstr "用于解压包目录。以后运行将假设任何已下载的包被提取到这个沙盒。" -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " "neither -g, -o, nor -s are specified)" msgstr "包含崩溃数据库访问信息文件之路径。此项将用于为特定崩溃代码上传堆栈的回溯调试信息(除非用户指定 -g, -o 或 -s)" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." msgstr "显示返回的堆栈信息,并询求确认是否将其发送至崩溃数据库。" -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "SQLite 数据库路径重复(默认:不重复检查)" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "您不能在未指定 -S 选项的情况下使用 -C 选项,停止。" #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "确定以附件形式发送这些?[y/n]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "该软件包似乎没有被正确安装" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " "and try again." msgstr "这不是官方的 %s 软件包。请删除所有第三方软件包,然后重试。" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -460,121 +461,121 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "未知程序" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "对不起,%s 程序异常退出" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "%s 中的问题" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." msgstr "您的计算机剩余空间不足,程序无法自动诊断问题并向开发者发送问题报告。" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "无效的问题报告" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "您没有访问这个问题报告的权限。" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "错误" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "没有足够的磁盘空间来处理报告。" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "没有指定软件包" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "您需要指定一个软件包或者 PID。使用 --help 选项来获取更多信息。" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "拒绝访问" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." msgstr "指定的进程只能以进程的所有者或 root 身份运行。" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "无效的 PID" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "指定的进程 ID 不属于一个程序。" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "症状脚本 %s 没有划定受影响的包" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "软件包 %s 不存在" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "无法创建报告" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "更新问题报告" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -584,8 +585,8 @@ "您不是该问题报告的报告者或订阅者,或者该报告被视为重复或已经关闭。\n" "请使用 apport-bug 新建一份报告。" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -600,65 +601,65 @@ "因此,我们建议您使用 apport-bug 来提交新的错误报告,并在当前报告中对您新提交的报告进行评论。\n" "您确定要继续么?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "未收集更多信息。" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "您想报告什么类型的问题?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "未知症状" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "症状 %s 未知。" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." msgstr "在关闭这个消息只后,请点击要报告问题的程序窗口。" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "xprop 无法确定窗口的进程 ID" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "请指定包的名称。" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "向报告中添加额外的标记,可多次指定。" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "%prog [选项] [症状|PID|软件包|程序目录|.apport/.crash file]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " @@ -666,165 +667,165 @@ msgstr "" "以填写 bug 模式启动。需要 --package 和可选的 --pid 参数,或单独使用 --pid 参数。如果二者均未给出,将显示一系列症状供选择。" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "点击一个窗口作为提交问题报告的目标。" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "启动错误更新模式。可以使用选项 --package 来指定软件包。" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" msgstr "针对某个症状报告 bug。" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" msgstr "--file-bug 模式中指定软件包名。如果指定了 --pid,则是可选的。(如果只给定软件包名这一个参数则为必需。)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " "argument.)" msgstr "在 --file-bug 模式中指定运行的程序。如果指定,该问题报告将包含更多的信息。(默认指定 pid 作为唯一参数。)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "此进程号的程序是挂起的。" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " "ones in %s. (Implied if file is given as only argument.)" msgstr "从给定的 .apport 或者 .crash 文件,而不是从正在处理的 %s 中汇报崩溃。(如果文件只给定了参数时实现。)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " "machine." msgstr "在提交报告过程中,将收集到的信息保存到要报告的文件中。该文件可用于稍后在另一台机器上提交。" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "输出 Apport 版本号" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "这将在终端窗口中启动 apport-retrace,以检查此崩溃。" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "运行 gdb 会话" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "不下载调试符号的情况下运行 gdb 会话" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "利用全符号的堆栈跟踪更新 %s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "这一问题报告适用于不再安装的程序。" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " "occurred." msgstr "自崩溃发生起已更改的程序 %s 出现问题。" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "该问题报告已损坏,无法处理。" #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "该报告属于一个未安装的软件包。" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "尝试处理此问题报告时出现错误:" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "无法检测包或者源码包的名称。" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "无法打开浏览器" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "无法使用浏览器打开网页 %s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "请为 %s 错误追踪系统输入您的帐户信息" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "网络问题" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "无法连接到崩溃数据库,请检查您的 Internet 连接。" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "内存耗尽" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "您的系统没有足够的内存来处理此崩溃报告。" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -835,22 +836,22 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "该问题为已知问题" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " "helpful for the developers." msgstr "关于这个问题,之前已经有如网页所示的报告。您是否有所补充?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "已将此问题报告给开发人员。谢谢!" --- apport-2.20.3.orig/po/zh_HK.po +++ apport-2.20.3/po/zh_HK.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:15+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:47+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: zh_HK\n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr "非常抱歉,發生內部錯誤。" -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "若您之後仍發現問題,請嘗試重新啟動電腦。" @@ -57,11 +57,11 @@ msgid "Ignore future problems of this program version" msgstr "忽略本程式版本未來發生的錯誤" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "顯示詳細資料" @@ -69,21 +69,21 @@ msgid "_Examine locally" msgstr "於本地端檢查(_E)" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "維持關閉" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "繼續" @@ -97,9 +97,10 @@ "you report." msgstr "" +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "" @@ -107,8 +108,8 @@ msgid "Uploading problem information" msgstr "" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -118,103 +119,103 @@ msgid "Apport crash file" msgstr "" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "很抱歉,應用程式 %s 已無預期停止。" -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "非常抱歉,%s 已無預警關閉。" -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "非常抱歉, %s 遭遇內部錯誤。" -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "傳送" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "強制關閉" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "重新啟動" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "應用程式 %s 已停止回應。" -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "程式「%s」已停止回應。" -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "套件:%s" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "非常抱歉,於安裝軟件時遭遇問題。" -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "應用程式 %s 已遭遇某內部錯誤。" -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "應用程式 %s 已無預警關閉。" -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "忽略未來發生的此類型問題" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "隱藏詳細資料" @@ -227,30 +228,31 @@ msgid "Destination directory exists and is not empty." msgstr "" -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." msgstr "" -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "" @@ -273,13 +275,13 @@ "Please enter your password to access problem reports of system programs" msgstr "" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "" -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "" @@ -320,9 +322,8 @@ "detection" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "" @@ -332,46 +333,46 @@ msgid "Error: %s is not an executable. Stopping." msgstr "" -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -381,72 +382,72 @@ "be able to retrace crashes that happened on the currently running release." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "在記錄訊息前加上時間戳記,供批次操作" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." msgstr "解包套件的目錄。未來執行時將假定任何已下載的套件也都抽出於此沙盒中。" -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " "neither -g, -o, nor -s are specified)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "" #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "這個套件似乎尚未正確安裝" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " "and try again." msgstr "這不是官方的 %s 套件。請移除任何第三方套件並重試。" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -455,121 +456,121 @@ "%s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -577,8 +578,8 @@ "Please create a new report using \"apport-bug\"." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -590,230 +591,230 @@ "Do you really want to proceed?" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " "a single argument is given.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "提供的 pid 是懸凍的應用程式。" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " "ones in %s. (Implied if file is given as only argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " "machine." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "這會在終端機視窗中啟動 apport-retrace 以檢查程式當掉原因。" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "執行 gdb 作業階段" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "執行 gdb 作業階段而不下載除錯符號" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "以完整的符號堆疊追蹤來更新 %s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " "occurred." msgstr "發生問題的程式 %s 自上次遭遇當掉之後已有變動。" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "" #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "試圖處理問題回報時遭遇錯誤:" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -821,22 +822,22 @@ "%s" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " "helpful for the developers." msgstr "此問題在網頁瀏覽器上顯示的錯誤報告中已經回報,請檢查您是否能提供更多可能對開發者有用的進一步資訊。" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "此問題已經回報給開發者。感謝您!" --- apport-2.20.3.orig/po/zh_TW.po +++ apport-2.20.3/po/zh_TW.po @@ -14,15 +14,15 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-07-14 05:16+0000\n" -"X-Generator: Launchpad (build 18115)\n" +"X-Launchpad-Export-Date: 2016-09-13 05:47+0000\n" +"X-Generator: Launchpad (build 18186)\n" "Language: \n" -#: ../kde/apport-kde.py:468 ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 #: ../debian/tmp/usr/share/apport/apport-kde.py:468 #: ../debian/tmp/usr/share/apport/apport-kde.py:503 -#: ../debian/tmp/usr/share/apport/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-kde.py:522 ../kde/apport-kde.py:468 +#: ../kde/apport-kde.py:503 ../kde/apport-kde.py:522 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:1 ../gtk/apport-gtk.ui.h:1 msgid "Apport" msgstr "" @@ -42,10 +42,10 @@ msgid "Sorry, an internal error happened." msgstr "非常抱歉,發生內部錯誤。" -#: ../kde/apport-kde.py:240 ../gtk/apport-gtk.py:300 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 ../gtk/apport-gtk.ui.h:6 -#: ../debian/tmp/usr/share/apport/apport-kde.py:240 #: ../debian/tmp/usr/share/apport/apport-gtk.py:300 +#: ../debian/tmp/usr/share/apport/apport-kde.py:240 ../gtk/apport-gtk.py:300 +#: ../kde/apport-kde.py:240 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:6 +#: ../gtk/apport-gtk.ui.h:6 msgid "If you notice further problems, try restarting the computer." msgstr "若您之後仍發現問題,請嘗試重新啟動電腦。" @@ -57,11 +57,11 @@ msgid "Ignore future problems of this program version" msgstr "忽略本程式版本未來發生的錯誤" -#: ../kde/apport-kde.py:291 ../gtk/apport-gtk.py:204 ../gtk/apport-gtk.py:573 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 -#: ../debian/tmp/usr/share/apport/apport-kde.py:291 #: ../debian/tmp/usr/share/apport/apport-gtk.py:204 #: ../debian/tmp/usr/share/apport/apport-gtk.py:573 +#: ../debian/tmp/usr/share/apport/apport-kde.py:291 ../gtk/apport-gtk.py:204 +#: ../gtk/apport-gtk.py:573 ../kde/apport-kde.py:291 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:9 ../gtk/apport-gtk.ui.h:9 msgid "Show Details" msgstr "顯示詳細資料" @@ -69,21 +69,21 @@ msgid "_Examine locally" msgstr "於本地端檢查(_E)" -#: ../kde/apport-kde.py:233 ../gtk/apport-gtk.py:287 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 ../gtk/apport-gtk.ui.h:11 -#: ../debian/tmp/usr/share/apport/apport-kde.py:233 #: ../debian/tmp/usr/share/apport/apport-gtk.py:287 +#: ../debian/tmp/usr/share/apport/apport-kde.py:233 ../gtk/apport-gtk.py:287 +#: ../kde/apport-kde.py:233 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:11 +#: ../gtk/apport-gtk.ui.h:11 msgid "Leave Closed" msgstr "維持關閉" -#: ../kde/apport-kde.py:230 ../kde/apport-kde.py:243 ../gtk/apport-gtk.py:216 -#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 -#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 ../gtk/apport-gtk.ui.h:12 -#: ../debian/tmp/usr/share/apport/apport-kde.py:230 -#: ../debian/tmp/usr/share/apport/apport-kde.py:243 #: ../debian/tmp/usr/share/apport/apport-gtk.py:216 #: ../debian/tmp/usr/share/apport/apport-gtk.py:284 #: ../debian/tmp/usr/share/apport/apport-gtk.py:303 +#: ../debian/tmp/usr/share/apport/apport-kde.py:230 +#: ../debian/tmp/usr/share/apport/apport-kde.py:243 ../gtk/apport-gtk.py:216 +#: ../gtk/apport-gtk.py:284 ../gtk/apport-gtk.py:303 ../kde/apport-kde.py:230 +#: ../kde/apport-kde.py:243 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:12 +#: ../gtk/apport-gtk.ui.h:12 msgid "Continue" msgstr "繼續" @@ -97,9 +97,10 @@ "you report." msgstr "正在收集資訊以幫助開發者修正您報告的問題。" +#: ../debian/tmp/usr/share/apport/apport-kde.py:434 +#: ../debian/tmp/usr/bin/apport-cli.py:251 ../bin/apport-cli.py:251 #: ../kde/apport-kde.py:434 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:15 -#: ../gtk/apport-gtk.ui.h:15 ../debian/tmp/usr/bin/apport-cli.py:251 -#: ../debian/tmp/usr/share/apport/apport-kde.py:434 ../bin/apport-cli.py:251 +#: ../gtk/apport-gtk.ui.h:15 msgid "Uploading problem information" msgstr "正在上傳問題資訊" @@ -107,8 +108,8 @@ msgid "Uploading problem information" msgstr "正在上傳問題資訊" -#: ../kde/apport-kde.py:435 ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 -#: ../gtk/apport-gtk.ui.h:17 ../debian/tmp/usr/share/apport/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-kde.py:435 ../kde/apport-kde.py:435 +#: ../debian/tmp/usr/share/apport/apport-gtk.ui.h:17 ../gtk/apport-gtk.ui.h:17 msgid "" "The collected information is being sent to the bug tracking system. This " "might take a few minutes." @@ -118,103 +119,103 @@ msgid "Apport crash file" msgstr "Apport 當機檔案" -#: ../kde/apport-kde.py:362 ../gtk/apport-gtk.py:142 -#: ../debian/tmp/usr/bin/apport-cli.py:150 -#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../bin/apport-cli.py:150 #: ../debian/tmp/usr/share/apport/apport-gtk.py:142 +#: ../debian/tmp/usr/share/apport/apport-kde.py:362 ../gtk/apport-gtk.py:142 +#: ../debian/tmp/usr/bin/apport-cli.py:150 ../bin/apport-cli.py:150 +#: ../kde/apport-kde.py:362 msgid "(binary data)" msgstr "(二進制資料)" -#: ../gtk/apport-gtk.py:157 ../debian/tmp/usr/share/apport/apport-gtk.py:157 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:157 ../gtk/apport-gtk.py:157 #, python-format msgid "Sorry, the application %s has stopped unexpectedly." msgstr "很抱歉,應用程式 %s 已無預期停止。" -#: ../gtk/apport-gtk.py:160 ../debian/tmp/usr/share/apport/apport-gtk.py:160 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:160 ../gtk/apport-gtk.py:160 #, python-format msgid "Sorry, %s has closed unexpectedly." msgstr "非常抱歉,%s 已無預警關閉。" -#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 ../gtk/apport-gtk.py:165 -#: ../debian/tmp/usr/share/apport/apport-kde.py:199 -#: ../debian/tmp/usr/share/apport/apport-kde.py:237 #: ../debian/tmp/usr/share/apport/apport-gtk.py:165 +#: ../debian/tmp/usr/share/apport/apport-kde.py:199 +#: ../debian/tmp/usr/share/apport/apport-kde.py:237 ../gtk/apport-gtk.py:165 +#: ../kde/apport-kde.py:199 ../kde/apport-kde.py:237 #, python-format msgid "Sorry, %s has experienced an internal error." msgstr "非常抱歉, %s 遭遇內部錯誤。" -#: ../kde/apport-kde.py:185 ../gtk/apport-gtk.py:177 -#: ../debian/tmp/usr/bin/apport-cli.py:178 -#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../bin/apport-cli.py:178 #: ../debian/tmp/usr/share/apport/apport-gtk.py:177 +#: ../debian/tmp/usr/share/apport/apport-kde.py:185 ../gtk/apport-gtk.py:177 +#: ../debian/tmp/usr/bin/apport-cli.py:178 ../bin/apport-cli.py:178 +#: ../kde/apport-kde.py:185 msgid "Send problem report to the developers?" msgstr "要將傳送問題報告給開發者嗎?" -#: ../kde/apport-kde.py:193 ../gtk/apport-gtk.py:186 -#: ../debian/tmp/usr/share/apport/apport-kde.py:193 #: ../debian/tmp/usr/share/apport/apport-gtk.py:186 +#: ../debian/tmp/usr/share/apport/apport-kde.py:193 ../gtk/apport-gtk.py:186 +#: ../kde/apport-kde.py:193 msgid "Send" msgstr "傳送" -#: ../gtk/apport-gtk.py:228 ../debian/tmp/usr/share/apport/apport-gtk.py:228 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:228 ../gtk/apport-gtk.py:228 msgid "Force Closed" msgstr "強制關閉" -#: ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 ../gtk/apport-gtk.py:229 -#: ../gtk/apport-gtk.py:288 ../debian/tmp/usr/share/apport/apport-kde.py:234 -#: ../debian/tmp/usr/share/apport/apport-kde.py:380 #: ../debian/tmp/usr/share/apport/apport-gtk.py:229 #: ../debian/tmp/usr/share/apport/apport-gtk.py:288 +#: ../debian/tmp/usr/share/apport/apport-kde.py:234 +#: ../debian/tmp/usr/share/apport/apport-kde.py:380 ../gtk/apport-gtk.py:229 +#: ../gtk/apport-gtk.py:288 ../kde/apport-kde.py:234 ../kde/apport-kde.py:380 msgid "Relaunch" msgstr "重新啟動" -#: ../gtk/apport-gtk.py:238 ../debian/tmp/usr/share/apport/apport-gtk.py:238 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:238 ../gtk/apport-gtk.py:238 #, python-format msgid "The application %s has stopped responding." msgstr "應用程式 %s 已停止回應。" -#: ../gtk/apport-gtk.py:242 ../debian/tmp/usr/share/apport/apport-gtk.py:242 +#: ../debian/tmp/usr/share/apport/apport-gtk.py:242 ../gtk/apport-gtk.py:242 #, python-format msgid "The program \"%s\" has stopped responding." msgstr "程式「%s」已停止回應。" -#: ../kde/apport-kde.py:207 ../gtk/apport-gtk.py:257 -#: ../debian/tmp/usr/share/apport/apport-kde.py:207 #: ../debian/tmp/usr/share/apport/apport-gtk.py:257 +#: ../debian/tmp/usr/share/apport/apport-kde.py:207 ../gtk/apport-gtk.py:257 +#: ../kde/apport-kde.py:207 #, python-format msgid "Package: %s" msgstr "套件:%s" -#: ../kde/apport-kde.py:213 ../gtk/apport-gtk.py:264 -#: ../debian/tmp/usr/share/apport/apport-kde.py:213 #: ../debian/tmp/usr/share/apport/apport-gtk.py:264 +#: ../debian/tmp/usr/share/apport/apport-kde.py:213 ../gtk/apport-gtk.py:264 +#: ../kde/apport-kde.py:213 msgid "Sorry, a problem occurred while installing software." msgstr "非常抱歉,於安裝軟體時遭遇問題。" -#: ../kde/apport-kde.py:219 ../gtk/apport-gtk.py:273 ../gtk/apport-gtk.py:292 -#: ../debian/tmp/usr/share/apport/apport-kde.py:219 #: ../debian/tmp/usr/share/apport/apport-gtk.py:273 #: ../debian/tmp/usr/share/apport/apport-gtk.py:292 +#: ../debian/tmp/usr/share/apport/apport-kde.py:219 ../gtk/apport-gtk.py:273 +#: ../gtk/apport-gtk.py:292 ../kde/apport-kde.py:219 #, python-format msgid "The application %s has experienced an internal error." msgstr "應用程式 %s 已遭遇某內部錯誤。" -#: ../kde/apport-kde.py:222 ../gtk/apport-gtk.py:276 -#: ../debian/tmp/usr/share/apport/apport-kde.py:222 #: ../debian/tmp/usr/share/apport/apport-gtk.py:276 +#: ../debian/tmp/usr/share/apport/apport-kde.py:222 ../gtk/apport-gtk.py:276 +#: ../kde/apport-kde.py:222 #, python-format msgid "The application %s has closed unexpectedly." msgstr "應用程式 %s 已無預警關閉。" -#: ../kde/apport-kde.py:244 ../gtk/apport-gtk.py:304 -#: ../debian/tmp/usr/share/apport/apport-kde.py:244 #: ../debian/tmp/usr/share/apport/apport-gtk.py:304 +#: ../debian/tmp/usr/share/apport/apport-kde.py:244 ../gtk/apport-gtk.py:304 +#: ../kde/apport-kde.py:244 msgid "Ignore future problems of this type" msgstr "忽略未來發生的此類型問題" -#: ../kde/apport-kde.py:288 ../gtk/apport-gtk.py:577 -#: ../debian/tmp/usr/share/apport/apport-kde.py:288 #: ../debian/tmp/usr/share/apport/apport-gtk.py:577 +#: ../debian/tmp/usr/share/apport/apport-kde.py:288 ../gtk/apport-gtk.py:577 +#: ../kde/apport-kde.py:288 msgid "Hide Details" msgstr "隱藏詳細資料" @@ -227,30 +228,31 @@ msgid "Destination directory exists and is not empty." msgstr "目的目錄存在且不是空的。" -#: ../kde/apport-kde.py:314 ../debian/tmp/usr/share/apport/apport-kde.py:314 +#: ../debian/tmp/usr/share/apport/apport-kde.py:314 ../kde/apport-kde.py:314 msgid "Username:" msgstr "" -#: ../kde/apport-kde.py:315 ../debian/tmp/usr/share/apport/apport-kde.py:315 +#: ../debian/tmp/usr/share/apport/apport-kde.py:315 ../kde/apport-kde.py:315 msgid "Password:" msgstr "" -#: ../kde/apport-kde.py:405 ../debian/tmp/usr/share/apport/apport-kde.py:405 +#: ../debian/tmp/usr/share/apport/apport-kde.py:405 ../kde/apport-kde.py:405 msgid "Collecting Problem Information" msgstr "正收集問題資訊" -#: ../kde/apport-kde.py:406 ../debian/tmp/usr/bin/apport-cli.py:238 -#: ../debian/tmp/usr/share/apport/apport-kde.py:406 ../bin/apport-cli.py:238 +#: ../debian/tmp/usr/share/apport/apport-kde.py:406 +#: ../debian/tmp/usr/bin/apport-cli.py:238 ../bin/apport-cli.py:238 +#: ../kde/apport-kde.py:406 msgid "Collecting problem information" msgstr "正在收集問題資訊" -#: ../kde/apport-kde.py:407 ../debian/tmp/usr/share/apport/apport-kde.py:407 +#: ../debian/tmp/usr/share/apport/apport-kde.py:407 ../kde/apport-kde.py:407 msgid "" "The collected information can be sent to the developers to improve the " "application. This might take a few minutes." msgstr "收集之資訊會傳送予開發者以改善該應用程式。此舉或需數分鐘。" -#: ../kde/apport-kde.py:433 ../debian/tmp/usr/share/apport/apport-kde.py:433 +#: ../debian/tmp/usr/share/apport/apport-kde.py:433 ../kde/apport-kde.py:433 msgid "Uploading Problem Information" msgstr "正上傳問題資訊" @@ -273,13 +275,13 @@ "Please enter your password to access problem reports of system programs" msgstr "" -#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde.desktop.in.h:1 -#: ../kde/apport-kde-mime.desktop.in.h:1 +#: ../gtk/apport-gtk.desktop.in.h:1 ../kde/apport-kde-mime.desktop.in.h:1 +#: ../kde/apport-kde.desktop.in.h:1 msgid "Report a problem..." msgstr "報告問題..." -#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde.desktop.in.h:2 -#: ../kde/apport-kde-mime.desktop.in.h:2 +#: ../gtk/apport-gtk.desktop.in.h:2 ../kde/apport-kde-mime.desktop.in.h:2 +#: ../kde/apport-kde.desktop.in.h:2 msgid "Report a malfunction to the developers" msgstr "報告問題予開發者" @@ -320,9 +322,8 @@ "detection" msgstr "可執行的文件下運作記憶體洩漏檢測工具" -#: ../debian/tmp/usr/bin/apport-retrace.py:63 #: ../debian/tmp/usr/bin/apport-valgrind.py:66 ../bin/apport-valgrind.py:66 -#: ../bin/apport-retrace.py:63 +#: ../bin/apport-retrace.py:63 ../debian/tmp/usr/bin/apport-retrace.py:63 msgid "" "Install an extra package into the sandbox (can be specified multiple times)" msgstr "" @@ -332,46 +333,46 @@ msgid "Error: %s is not an executable. Stopping." msgstr "" -#: ../debian/tmp/usr/share/apport/kernel_oops.py:29 ../data/kernel_oops.py:29 +#: ../data/kernel_oops.py:29 ../debian/tmp/usr/share/apport/kernel_oops.py:29 msgid "Your system might become unstable now and might need to be restarted." msgstr "您的系統現在也許會不穩定且需要重新啟動。" -#: ../debian/tmp/usr/bin/apport-retrace.py:34 ../bin/apport-retrace.py:34 +#: ../bin/apport-retrace.py:34 ../debian/tmp/usr/bin/apport-retrace.py:34 msgid "Do not put the new traces into the report, but write them to stdout." msgstr "不要將新的錯誤追溯放在報告中,但輸出至標準輸出(stdout)。" -#: ../debian/tmp/usr/bin/apport-retrace.py:36 ../bin/apport-retrace.py:36 +#: ../bin/apport-retrace.py:36 ../debian/tmp/usr/bin/apport-retrace.py:36 msgid "" "Start an interactive gdb session with the report's core dump (-o ignored; " "does not rewrite report)" msgstr "啟動新的互動式 gdb 連線階段及核心傾印報告(-o 忽略:不會複寫報告)" -#: ../debian/tmp/usr/bin/apport-retrace.py:38 ../bin/apport-retrace.py:38 +#: ../bin/apport-retrace.py:38 ../debian/tmp/usr/bin/apport-retrace.py:38 msgid "" "Write modified report to given file instead of changing the original report" msgstr "寫入已修改的報告至特定的檔案來替代改變原始報告" -#: ../debian/tmp/usr/bin/apport-retrace.py:41 ../bin/apport-retrace.py:41 +#: ../bin/apport-retrace.py:41 ../debian/tmp/usr/bin/apport-retrace.py:41 msgid "Remove the core dump from the report after stack trace regeneration" msgstr "在堆疊追溯重新產生後從報告中移除核心傾印" -#: ../debian/tmp/usr/bin/apport-retrace.py:43 ../bin/apport-retrace.py:43 +#: ../bin/apport-retrace.py:43 ../debian/tmp/usr/bin/apport-retrace.py:43 msgid "Override report's CoreFile" msgstr "覆蓋報告的核心檔案(CoreFile)" -#: ../debian/tmp/usr/bin/apport-retrace.py:45 ../bin/apport-retrace.py:45 +#: ../bin/apport-retrace.py:45 ../debian/tmp/usr/bin/apport-retrace.py:45 msgid "Override report's ExecutablePath" msgstr "覆蓋報告的可執行路徑(ExecutablePath)" -#: ../debian/tmp/usr/bin/apport-retrace.py:47 ../bin/apport-retrace.py:47 +#: ../bin/apport-retrace.py:47 ../debian/tmp/usr/bin/apport-retrace.py:47 msgid "Override report's ProcMaps" msgstr "覆蓋報告的行程對映(ProcMaps)" -#: ../debian/tmp/usr/bin/apport-retrace.py:49 ../bin/apport-retrace.py:49 +#: ../bin/apport-retrace.py:49 ../debian/tmp/usr/bin/apport-retrace.py:49 msgid "Rebuild report's Package information" msgstr "重建報告的套件資訊" -#: ../debian/tmp/usr/bin/apport-retrace.py:51 ../bin/apport-retrace.py:51 +#: ../bin/apport-retrace.py:51 ../debian/tmp/usr/bin/apport-retrace.py:51 msgid "" "Build a temporary sandbox and download/install the necessary packages and " "debug symbols in there; without this option it assumes that the necessary " @@ -381,72 +382,72 @@ "be able to retrace crashes that happened on the currently running release." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:53 ../bin/apport-retrace.py:53 +#: ../bin/apport-retrace.py:53 ../debian/tmp/usr/bin/apport-retrace.py:53 msgid "" "Report download/install progress when installing packages into sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:55 ../bin/apport-retrace.py:55 +#: ../bin/apport-retrace.py:55 ../debian/tmp/usr/bin/apport-retrace.py:55 msgid "Prepend timestamps to log messages, for batch operation" msgstr "在記錄訊息前加上時間戳記,供批次操作" -#: ../debian/tmp/usr/bin/apport-retrace.py:57 ../bin/apport-retrace.py:57 +#: ../bin/apport-retrace.py:57 ../debian/tmp/usr/bin/apport-retrace.py:57 msgid "" "Create and use third-party repositories from origins specified in reports" msgstr "製作並使用指定的第三方軟體庫來源置於報告中" -#: ../debian/tmp/usr/bin/apport-retrace.py:59 ../bin/apport-retrace.py:59 +#: ../bin/apport-retrace.py:59 ../debian/tmp/usr/bin/apport-retrace.py:59 msgid "Cache directory for packages downloaded in the sandbox" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:61 ../bin/apport-retrace.py:61 +#: ../bin/apport-retrace.py:61 ../debian/tmp/usr/bin/apport-retrace.py:61 msgid "" "Directory for unpacked packages. Future runs will assume that any already " "downloaded package is also extracted to this sandbox." msgstr "解包套件的目錄。未來執行時將假定任何已下載的套件也都抽出於此沙盒中。" -#: ../debian/tmp/usr/bin/apport-retrace.py:65 ../bin/apport-retrace.py:65 +#: ../bin/apport-retrace.py:65 ../debian/tmp/usr/bin/apport-retrace.py:65 msgid "" "Path to a file with the crash database authentication information. This is " "used when specifying a crash ID to upload the retraced stack traces (only if " "neither -g, -o, nor -s are specified)" msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:67 ../bin/apport-retrace.py:67 +#: ../bin/apport-retrace.py:67 ../debian/tmp/usr/bin/apport-retrace.py:67 msgid "" "Display retraced stack traces and ask for confirmation before sending them " "to the crash database." msgstr "" -#: ../debian/tmp/usr/bin/apport-retrace.py:69 ../bin/apport-retrace.py:69 +#: ../bin/apport-retrace.py:69 ../debian/tmp/usr/bin/apport-retrace.py:69 msgid "" "Path to the duplicate sqlite database (default: no duplicate checking)" msgstr "重複的 sqlite 資料庫路徑(預設:無重複檢查)" -#: ../debian/tmp/usr/bin/apport-retrace.py:78 ../bin/apport-retrace.py:78 +#: ../bin/apport-retrace.py:78 ../debian/tmp/usr/bin/apport-retrace.py:78 msgid "You cannot use -C without -S. Stopping." msgstr "" #. translators: don't translate y/n, apport currently only checks for "y" -#: ../debian/tmp/usr/bin/apport-retrace.py:111 ../bin/apport-retrace.py:111 +#: ../bin/apport-retrace.py:111 ../debian/tmp/usr/bin/apport-retrace.py:111 msgid "OK to send these as attachments? [y/n]" msgstr "允許傳送這些附件?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:124 -#: ../apport/ui.py:124 +#: ../apport/ui.py:129 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 msgid "This package does not seem to be installed correctly" msgstr "這個套件似乎尚未正確安裝" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:129 -#: ../apport/ui.py:129 +#: ../apport/ui.py:134 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:134 #, python-format msgid "" "This is not an official %s package. Please remove any third party package " "and try again." msgstr "這不是官方的 %s 套件。請移除任何第三方套件並重試。" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:146 -#: ../apport/ui.py:146 +#: ../apport/ui.py:151 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:151 #, python-format msgid "" "You have some obsolete package versions installed. Please upgrade the " @@ -458,121 +459,121 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:270 -#: ../apport/ui.py:270 +#: ../apport/ui.py:275 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:275 msgid "unknown program" msgstr "未知程式" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:271 -#: ../apport/ui.py:271 +#: ../apport/ui.py:276 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:276 #, python-format msgid "Sorry, the program \"%s\" closed unexpectedly" msgstr "對不起,\"%s\" 程式已不正常關閉" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:273 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1312 -#: ../apport/ui.py:273 ../apport/ui.py:1312 +#: ../apport/ui.py:278 ../apport/ui.py:1317 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:278 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1317 #, python-format msgid "Problem in %s" msgstr "在 %s 中的問題" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:274 -#: ../apport/ui.py:274 +#: ../apport/ui.py:279 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:279 msgid "" "Your computer does not have enough free memory to automatically analyze the " "problem and send a report to the developers." msgstr "您的電腦並沒有足夠的可用記憶體可自動分析問題並傳送給開發者一份報告。" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:322 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:330 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:457 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:460 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:661 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1118 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1288 -#: ../apport/ui.py:322 ../apport/ui.py:330 ../apport/ui.py:457 -#: ../apport/ui.py:460 ../apport/ui.py:661 ../apport/ui.py:1118 -#: ../apport/ui.py:1284 ../apport/ui.py:1288 +#: ../apport/ui.py:327 ../apport/ui.py:335 ../apport/ui.py:462 +#: ../apport/ui.py:465 ../apport/ui.py:666 ../apport/ui.py:1123 +#: ../apport/ui.py:1289 ../apport/ui.py:1293 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:335 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:462 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:465 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:666 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1123 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1289 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1293 msgid "Invalid problem report" msgstr "無效的問題回報" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:323 -#: ../apport/ui.py:323 +#: ../apport/ui.py:328 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:328 msgid "You are not allowed to access this problem report." msgstr "您並不被允許存取此份問題回報。" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:326 -#: ../apport/ui.py:326 +#: ../apport/ui.py:331 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:331 msgid "Error" msgstr "錯誤" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:327 -#: ../apport/ui.py:327 +#: ../apport/ui.py:332 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:332 msgid "There is not enough disk space available to process this report." msgstr "沒有足夠的磁碟空間以處理此份報告。" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:411 -#: ../apport/ui.py:411 +#: ../apport/ui.py:416 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:416 msgid "No package specified" msgstr "未指定套件" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:412 -#: ../apport/ui.py:412 +#: ../apport/ui.py:417 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:417 msgid "" "You need to specify a package or a PID. See --help for more information." msgstr "您需要指定一個套件或一個 PID。更多資訊請參考 --help。" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:435 -#: ../apport/ui.py:435 +#: ../apport/ui.py:440 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:440 msgid "Permission denied" msgstr "權限不足" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:436 -#: ../apport/ui.py:436 +#: ../apport/ui.py:441 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:441 msgid "" "The specified process does not belong to you. Please run this program as the " "process owner or as root." msgstr "指定的程序並不屬於您。請以程序擁有者或是 root 身份執行此程式。" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:438 -#: ../apport/ui.py:438 +#: ../apport/ui.py:443 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:443 msgid "Invalid PID" msgstr "無效的 PID" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:439 -#: ../apport/ui.py:439 +#: ../apport/ui.py:444 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:444 msgid "The specified process ID does not belong to a program." msgstr "指定的程序 ID 並不屬於一個程式。" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:458 -#: ../apport/ui.py:458 +#: ../apport/ui.py:463 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:463 #, python-format msgid "Symptom script %s did not determine an affected package" msgstr "徵狀判斷指令稿 %s 無法判斷出受影響的套件" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:461 -#: ../apport/ui.py:461 +#: ../apport/ui.py:466 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:466 #, python-format msgid "Package %s does not exist" msgstr "套件 %s 不存在" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:485 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:673 +#: ../apport/ui.py:490 ../apport/ui.py:678 ../apport/ui.py:683 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:490 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:678 -#: ../apport/ui.py:485 ../apport/ui.py:673 ../apport/ui.py:678 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:683 msgid "Cannot create report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:500 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:546 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:563 -#: ../apport/ui.py:500 ../apport/ui.py:546 ../apport/ui.py:563 +#: ../apport/ui.py:505 ../apport/ui.py:551 ../apport/ui.py:568 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:505 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:551 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:568 msgid "Updating problem report" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:501 -#: ../apport/ui.py:501 +#: ../apport/ui.py:506 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:506 msgid "" "You are not the reporter or subscriber of this problem report, or the report " "is a duplicate or already closed.\n" @@ -580,8 +581,8 @@ "Please create a new report using \"apport-bug\"." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:510 -#: ../apport/ui.py:510 +#: ../apport/ui.py:515 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:515 msgid "" "You are not the reporter of this problem report. It is much easier to mark a " "bug as a duplicate of another than to move your comments and attachments to " @@ -593,66 +594,66 @@ "Do you really want to proceed?" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:547 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:564 -#: ../apport/ui.py:547 ../apport/ui.py:564 +#: ../apport/ui.py:552 ../apport/ui.py:569 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:552 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:569 msgid "No additional information collected." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:615 -#: ../apport/ui.py:615 +#: ../apport/ui.py:620 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:620 msgid "What kind of problem do you want to report?" msgstr "您想要回報何種問題?" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:632 -#: ../apport/ui.py:632 +#: ../apport/ui.py:637 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:637 msgid "Unknown symptom" msgstr "未知的症狀" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:633 -#: ../apport/ui.py:633 +#: ../apport/ui.py:638 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:638 #, python-format msgid "The symptom \"%s\" is not known." msgstr "症狀 %s 未知。" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:664 -#: ../apport/ui.py:664 +#: ../apport/ui.py:669 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:669 msgid "" "After closing this message please click on an application window to report a " "problem about it." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:674 +#: ../apport/ui.py:679 ../apport/ui.py:684 #: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:679 -#: ../apport/ui.py:674 ../apport/ui.py:679 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:684 msgid "xprop failed to determine process ID of the window" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:693 -#: ../apport/ui.py:693 +#: ../apport/ui.py:698 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:698 msgid "%prog " msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:695 -#: ../apport/ui.py:695 +#: ../apport/ui.py:700 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:700 msgid "Specify package name." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:697 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:748 -#: ../apport/ui.py:697 ../apport/ui.py:748 +#: ../apport/ui.py:702 ../apport/ui.py:753 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:702 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:753 msgid "Add an extra tag to the report. Can be specified multiple times." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:727 -#: ../apport/ui.py:727 +#: ../apport/ui.py:732 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 msgid "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" msgstr "" "%prog [options] [symptom|pid|package|program path|.apport/.crash file]" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:730 -#: ../apport/ui.py:730 +#: ../apport/ui.py:735 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:735 msgid "" "Start in bug filing mode. Requires --package and an optional --pid, or just " "a --pid. If neither is given, display a list of known symptoms. (Implied if " @@ -661,165 +662,165 @@ "啟動為錯誤歸檔模式。需要 --packages 和一個可選擇的 --pid,或是只需 --" "pid。若兩者都未給予,顯示一份已知症狀的列表。(暗示若只有給予單一參數。)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:732 -#: ../apport/ui.py:732 +#: ../apport/ui.py:737 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:737 msgid "Click a window as a target for filing a problem report." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:734 -#: ../apport/ui.py:734 +#: ../apport/ui.py:739 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:739 msgid "Start in bug updating mode. Can take an optional --package." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:736 -#: ../apport/ui.py:736 +#: ../apport/ui.py:741 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:741 msgid "" "File a bug report about a symptom. (Implied if symptom name is given as only " "argument.)" msgstr "建立關於症狀的錯誤報告。(暗示是否只要提供症狀名稱作為引數。)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:738 -#: ../apport/ui.py:738 +#: ../apport/ui.py:743 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:743 msgid "" "Specify package name in --file-bug mode. This is optional if a --pid is " "specified. (Implied if package name is given as only argument.)" msgstr "在 --file-bug 模式中指定套件名稱。若指定 --pid 則是可選擇的。(暗示若套件名稱是唯一給予的參數。)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:740 -#: ../apport/ui.py:740 +#: ../apport/ui.py:745 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:745 msgid "" "Specify a running program in --file-bug mode. If this is specified, the bug " "report will contain more information. (Implied if pid is given as only " "argument.)" msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:742 -#: ../apport/ui.py:742 +#: ../apport/ui.py:747 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:747 msgid "The provided pid is a hanging application." msgstr "提供的 pid 是懸凍的應用程式。" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:744 -#: ../apport/ui.py:744 +#: ../apport/ui.py:749 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:749 #, python-format msgid "" "Report the crash from given .apport or .crash file instead of the pending " "ones in %s. (Implied if file is given as only argument.)" msgstr "從特定的 .apport 或 .crash 檔案來回報當掉情形,代替等待中的 %s。(暗示若特定檔案是唯一給予的參數。)" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:746 -#: ../apport/ui.py:746 +#: ../apport/ui.py:751 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:751 msgid "" "In bug filing mode, save the collected information into a file instead of " "reporting it. This file can then be reported later on from a different " "machine." msgstr "" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:750 -#: ../apport/ui.py:750 +#: ../apport/ui.py:755 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:755 msgid "Print the Apport version number." msgstr "列印 Apport 版本號碼。" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:889 -#: ../apport/ui.py:889 +#: ../apport/ui.py:894 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:894 msgid "" "This will launch apport-retrace in a terminal window to examine the crash." msgstr "這會在終端機視窗中啟動 apport-retrace 以檢查程式當掉原因。" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:890 -#: ../apport/ui.py:890 +#: ../apport/ui.py:895 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:895 msgid "Run gdb session" msgstr "執行 gdb 作業階段" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:891 -#: ../apport/ui.py:891 +#: ../apport/ui.py:896 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:896 msgid "Run gdb session without downloading debug symbols" msgstr "執行 gdb 作業階段而不下載除錯符號" #. TRANSLATORS: %s contains the crash report file name -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:893 -#: ../apport/ui.py:893 +#: ../apport/ui.py:898 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:898 #, python-format msgid "Update %s with fully symbolic stack trace" msgstr "以完整的符號堆疊追蹤來更新 %s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:969 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:979 -#: ../apport/ui.py:969 ../apport/ui.py:979 +#: ../apport/ui.py:974 ../apport/ui.py:984 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:974 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:984 msgid "" "This problem report applies to a program which is not installed any more." msgstr "此問題報告用於不再安裝的程式。" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:994 -#: ../apport/ui.py:994 +#: ../apport/ui.py:999 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:999 #, python-format msgid "" "The problem happened with the program %s which changed since the crash " "occurred." msgstr "發生問題的程式 %s 自上次遭遇當掉之後已有變動。" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1041 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1075 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1290 -#: ../apport/ui.py:1041 ../apport/ui.py:1075 ../apport/ui.py:1290 +#: ../apport/ui.py:1046 ../apport/ui.py:1080 ../apport/ui.py:1295 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1046 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1080 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1295 msgid "This problem report is damaged and cannot be processed." msgstr "此問題回報已損壞且無法處理。" #. package does not exist -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1045 -#: ../apport/ui.py:1045 +#: ../apport/ui.py:1050 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1050 msgid "The report belongs to a package that is not installed." msgstr "此報告屬於一份未安裝的套件。" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1049 -#: ../apport/ui.py:1049 +#: ../apport/ui.py:1054 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1054 msgid "An error occurred while attempting to process this problem report:" msgstr "試圖處理問題回報時遭遇錯誤:" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1119 -#: ../apport/ui.py:1119 +#: ../apport/ui.py:1124 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1124 msgid "Could not determine the package or source package name." msgstr "無法決定套件或原始碼套件名稱。" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1137 -#: ../apport/ui.py:1137 +#: ../apport/ui.py:1142 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1142 msgid "Unable to start web browser" msgstr "無法啟動網頁瀏覽器" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1138 -#: ../apport/ui.py:1138 +#: ../apport/ui.py:1143 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1143 #, python-format msgid "Unable to start web browser to open %s." msgstr "無法啟動網頁瀏覽器以開啟 %s。" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1238 -#: ../apport/ui.py:1238 +#: ../apport/ui.py:1243 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1243 #, python-format msgid "Please enter your account information for the %s bug tracking system" msgstr "請輸入您的 %s 錯誤回報系統帳號資訊" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1250 -#: ../apport/ui.py:1250 +#: ../apport/ui.py:1255 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1255 msgid "Network problem" msgstr "網路問題" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1252 -#: ../apport/ui.py:1252 +#: ../apport/ui.py:1257 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1257 msgid "" "Cannot connect to crash database, please check your Internet connection." msgstr "無法連接到當機資料庫,請檢查您的網路連線。" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1279 -#: ../apport/ui.py:1279 +#: ../apport/ui.py:1284 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1284 msgid "Memory exhaustion" msgstr "記憶體耗盡" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1280 -#: ../apport/ui.py:1280 +#: ../apport/ui.py:1285 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1285 msgid "Your system does not have enough memory to process this crash report." msgstr "您的系統沒有足夠的記憶體來處理此份當機報告。" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1315 -#: ../apport/ui.py:1315 +#: ../apport/ui.py:1320 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1320 #, python-format msgid "" "The problem cannot be reported:\n" @@ -830,22 +831,22 @@ "\n" "%s" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1371 -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1378 -#: ../apport/ui.py:1371 ../apport/ui.py:1378 +#: ../apport/ui.py:1376 ../apport/ui.py:1383 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1376 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1383 msgid "Problem already known" msgstr "已知問題" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1372 -#: ../apport/ui.py:1372 +#: ../apport/ui.py:1377 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1377 msgid "" "This problem was already reported in the bug report displayed in the web " "browser. Please check if you can add any further information that might be " "helpful for the developers." msgstr "此問題在網路瀏覽器顯示之錯誤報告中已回報。請檢查您是否能新增任何可能對開發者有幫助的進一步資訊。" -#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1379 -#: ../apport/ui.py:1379 +#: ../apport/ui.py:1384 +#: ../debian/tmp/usr/lib/python2.7/dist-packages/apport/ui.py:1384 msgid "This problem was already reported to developers. Thank you!" msgstr "此問題已經回報給開發者。感謝您!" --- apport-2.20.3.orig/test/run +++ apport-2.20.3/test/run @@ -34,16 +34,16 @@ export APPORT_TEST_LOCAL=1 # PEP8 tests, if pep8 is available - if type pep8 >/dev/null 2>&1; then - echo "Running pep8..." + if PYCODESTYLE=$(which pycodestyle 2>/dev/null || which pep8 2>/dev/null); then + echo "Running $(basename $PYCODESTYLE)..." # . catches all *.py modules; we explicitly need to specify the programs - pep8 -r --ignore=E401,E402,E501,E124 --exclude=test_problem_report.py,report.py,is-enabled,apport-bug,apport-collect . `find bin data gtk kde -type f -executable` + $PYCODESTYLE -r --ignore=E401,E402,E501,E124 --exclude=test_problem_report.py,report.py,is-enabled,apport-bug,apport-collect . `find bin data gtk kde -type f -executable` # those tests deliberately have trailing whitespace in test files, ignore - pep8 -r --ignore=E401,E402,E501,W291,W293 test/test_problem_report.py + $PYCODESTYLE -r --ignore=E401,E402,E501,W291,W293 test/test_problem_report.py # has_key is minidom API, not the dict operator here - pep8 -r --ignore=E401,E402,E501,W601 apport/report.py + $PYCODESTYLE -r --ignore=E401,E402,E501,W601 apport/report.py else - echo "Skipping PEP 8 tests, pep8 is not installed" + echo "Skipping PEP 8 tests, neither pycodestyle nor pep8 are installed" fi # pyflakes, if available --- apport-2.20.3.orig/test/test_backend_apt_dpkg.py +++ apport-2.20.3/test/test_backend_apt_dpkg.py @@ -109,21 +109,21 @@ # package with both Depends: and Pre-Depends: d = impl.get_dependencies('bash') - self.assertTrue(len(d) > 2) - self.assertTrue('libc6' in d) + self.assertGreater(len(d), 2) + self.assertIn('libc6', d) for dep in d: self.assertTrue(impl.get_version(dep)) # Pre-Depends: only d = impl.get_dependencies('coreutils') - self.assertTrue(len(d) >= 1) - self.assertTrue('libc6' in d) + self.assertGreaterEqual(len(d), 1) + self.assertIn('libc6', d) for dep in d: self.assertTrue(impl.get_version(dep)) # Depends: only d = impl.get_dependencies('libc6') - self.assertTrue(len(d) >= 1) + self.assertGreaterEqual(len(d), 1) for dep in d: self.assertTrue(impl.get_version(dep)) @@ -132,7 +132,7 @@ self.assertRaises(ValueError, impl.get_source, 'nonexisting') self.assertEqual(impl.get_source('bash'), 'bash') - self.assertTrue('glibc' in impl.get_source('libc6')) + self.assertIn('glibc', impl.get_source('libc6')) def test_get_package_origin(self): '''get_package_origin().''' @@ -169,7 +169,7 @@ '''get_files().''' self.assertRaises(ValueError, impl.get_files, 'nonexisting') - self.assertTrue('/bin/bash' in impl.get_files('bash')) + self.assertIn('/bin/bash', impl.get_files('bash')) def test_get_file_package(self): '''get_file_package() on installed files.''' @@ -422,7 +422,7 @@ arch = impl.get_system_architecture() # must be nonempty without line breaks self.assertNotEqual(arch, '') - self.assertTrue('\n' not in arch) + self.assertNotIn('\n', arch) def test_get_library_paths(self): '''get_library_paths().''' @@ -430,9 +430,9 @@ paths = impl.get_library_paths() # must be nonempty without line breaks self.assertNotEqual(paths, '') - self.assertTrue(':' in paths) - self.assertTrue('/lib' in paths) - self.assertTrue('\n' not in paths) + self.assertIn(':', paths) + self.assertIn('/lib', paths) + self.assertNotIn('\n', paths) def test_compare_versions(self): '''compare_versions.''' @@ -474,13 +474,13 @@ def test_get_kernel_package(self): '''get_kernel_package().''' - self.assertTrue('linux' in impl.get_kernel_package()) + self.assertIn('linux', impl.get_kernel_package()) def test_package_name_glob(self): '''package_name_glob().''' - self.assertTrue(len(impl.package_name_glob('a*')) > 5) - self.assertTrue('bash' in impl.package_name_glob('ba*h')) + self.assertGreater(len(impl.package_name_glob('a*')), 5) + self.assertIn('bash', impl.package_name_glob('ba*h')) self.assertEqual(impl.package_name_glob('bash'), ['bash']) self.assertEqual(impl.package_name_glob('xzywef*'), []) @@ -488,9 +488,9 @@ def test_install_packages_versioned(self): '''install_packages() with versions and with cache''' - self._setup_foonux_config(release='wily', updates=True) - v_coreutils = '8.23-4ubuntu2' - v_libc = '2.21-0ubuntu4' + self._setup_foonux_config(release='xenial', updates=True) + v_coreutils = '8.25-2ubuntu2' + v_libc = '2.23-0ubuntu3' obsolete = impl.install_packages(self.rootdir, self.configdir, 'Foonux 1.2', [('coreutils', v_coreutils), # should not come from updates @@ -511,7 +511,7 @@ self.assert_elf_arch(os.path.join(self.rootdir, 'usr/bin/stat'), impl.get_system_architecture()) self.assertTrue(os.path.exists(os.path.join(self.rootdir, - 'usr/lib/debug/usr/bin/stat'))) + 'usr/lib/debug/.build-id'))) self.assertTrue(os.path.exists(os.path.join(self.rootdir, 'usr/share/zoneinfo/zone.tab'))) self.assertTrue(os.path.exists(os.path.join(self.rootdir, @@ -521,7 +521,7 @@ self.assertEqual(sandbox_ver('coreutils'), v_coreutils) self.assertEqual(sandbox_ver('libc6'), v_libc) self.assertEqual(sandbox_ver('libc6-dbg'), v_libc) - self.assertGreater(sandbox_ver('tzdata'), '2015') + self.assertGreater(sandbox_ver('tzdata'), '2016') with open(os.path.join(self.rootdir, 'packages.txt')) as f: pkglist = f.read().splitlines() @@ -536,8 +536,8 @@ self.assertEqual(os.listdir(self.configdir), ['Foonux 1.2']) self.assertEqual(sorted(os.listdir(os.path.join(self.configdir, 'Foonux 1.2'))), ['armhf', 'codename', 'sources.list', 'trusted.gpg.d']) - self.assertEqual(os.listdir(os.path.join(self.configdir, 'Foonux 1.2', 'armhf')), - ['sources.list']) + self.assertEqual(sorted(os.listdir(os.path.join(self.configdir, 'Foonux 1.2', 'armhf'))), + ['sources.list', 'trusted.gpg.d']) # caches packages, and their versions are as expected cache = os.listdir(os.path.join(self.cachedir, 'Foonux 1.2', 'apt', @@ -568,21 +568,19 @@ # complains about obsolete packages result = impl.install_packages(self.rootdir, self.configdir, - 'Foonux 1.2', [('gnome-common', '1.1')]) - self.assertEqual(len(result.splitlines()), 1) - self.assertTrue('gnome-common' in result) - self.assertTrue('1.1' in result) + 'Foonux 1.2', [('aspell-doc', '1.1')]) + self.assertIn(result, 'aspell-doc version 1.1 required, but 0.60.7~20110707-3build1 is available\n') # ... but installs the current version anyway self.assertTrue(os.path.exists( - os.path.join(self.rootdir, 'usr/bin/gnome-autogen.sh'))) - self.assertGreaterEqual(sandbox_ver('gnome-common'), '3.1.0-0ubuntu1') + os.path.join(self.rootdir, 'usr/share/info/aspell.info.gz'))) + self.assertGreaterEqual(sandbox_ver('aspell-doc'), '0.60.7~2011') # does not crash on nonexisting packages result = impl.install_packages(self.rootdir, self.configdir, 'Foonux 1.2', [('buggerbogger', None)]) self.assertEqual(len(result.splitlines()), 1) - self.assertTrue('buggerbogger' in result) - self.assertTrue('not exist' in result) + self.assertIn('buggerbogger', result) + self.assertIn('not exist', result) # can interleave with other operations dpkg = subprocess.Popen(['dpkg-query', '-Wf${Version}', 'dash'], @@ -609,7 +607,7 @@ def test_install_packages_unversioned(self): '''install_packages() without versions and no cache''' - self._setup_foonux_config(release='wily') + self._setup_foonux_config(release='xenial') obsolete = impl.install_packages(self.rootdir, self.configdir, 'Foonux 1.2', [('coreutils', None), @@ -622,7 +620,7 @@ self.assert_elf_arch(os.path.join(self.rootdir, 'usr/bin/stat'), impl.get_system_architecture()) self.assertTrue(os.path.exists(os.path.join(self.rootdir, - 'usr/lib/debug/usr/bin/stat'))) + 'usr/lib/debug/.build-id'))) self.assertTrue(os.path.exists(os.path.join(self.rootdir, 'usr/share/zoneinfo/zone.tab'))) @@ -630,8 +628,8 @@ self.assertEqual(os.listdir(self.configdir), ['Foonux 1.2']) self.assertEqual(sorted(os.listdir(os.path.join(self.configdir, 'Foonux 1.2'))), ['armhf', 'codename', 'sources.list', 'trusted.gpg.d']) - self.assertEqual(os.listdir(os.path.join(self.configdir, 'Foonux 1.2', 'armhf')), - ['sources.list']) + self.assertEqual(sorted(os.listdir(os.path.join(self.configdir, 'Foonux 1.2', 'armhf'))), + ['sources.list', 'trusted.gpg.d']) # no cache self.assertEqual(os.listdir(self.cachedir), []) @@ -639,9 +637,9 @@ # keeps track of package versions with open(os.path.join(self.rootdir, 'packages.txt')) as f: pkglist = f.read().splitlines() - self.assertIn('coreutils 8.23-4ubuntu2', pkglist) - self.assertIn('coreutils-dbgsym 8.23-4ubuntu2', pkglist) - self.assertIn('tzdata 2015g-1', pkglist) + self.assertIn('coreutils 8.25-2ubuntu2', pkglist) + self.assertIn('coreutils-dbgsym 8.25-2ubuntu2', pkglist) + self.assertIn('tzdata 2016d-0ubuntu0.16.04', pkglist) self.assertEqual(len(pkglist), 3, str(pkglist)) @unittest.skipUnless(_has_internet(), 'online test') @@ -666,16 +664,16 @@ # complains about obsolete packages self.assertGreaterEqual(len(result.splitlines()), 1) - self.assertTrue('tzdata' in result) - self.assertTrue('1.1' in result) + self.assertIn('tzdata', result) + self.assertIn('1.1', result) # caches packages cache = os.listdir(os.path.join(self.cachedir, 'system', 'apt', 'var', 'cache', 'apt', 'archives')) cache_names = [p.split('_')[0] for p in cache] - self.assertTrue('coreutils' in cache_names) + self.assertIn('coreutils', cache_names) self.assertIn('coreutils-dbgsym', cache_names) - self.assertTrue('tzdata' in cache_names) + self.assertIn('tzdata', cache_names) # works with relative paths and existing cache os.unlink(os.path.join(self.rootdir, 'usr/bin/stat')) @@ -704,8 +702,8 @@ [('tzdata', None)], False, self.cachedir) self.fail('install_packages() unexpectedly succeeded with broken sources.list') except SystemError as e: - self.assertTrue('bogus' in str(e)) - self.assertFalse('Exception' in str(e)) + self.assertIn('bogus', str(e)) + self.assertNotIn('Exception', str(e)) # sources.list with wrong server with open(os.path.join(self.configdir, 'Foonux 1.2', 'sources.list'), 'w') as f: @@ -716,8 +714,11 @@ [('tzdata', None)], False, self.cachedir) self.fail('install_packages() unexpectedly succeeded with broken server URL') except SystemError as e: - self.assertTrue('nosuchdistro' in str(e), str(e)) - self.assertTrue('index files failed to download' in str(e)) + self.assertIn('nosuchdistro', str(e)) + try: + self.assertRegex(str(e), ".*'http://archive.ubuntu.com/nosuchdistro trusty.*' does not have a Release file") + except AssertionError: + self.assertIn('index files failed to download', str(e)) @unittest.skipUnless(_has_internet(), 'online test') def test_install_packages_permanent_sandbox(self): @@ -815,14 +816,14 @@ def test_install_packages_armhf(self): '''install_packages() for foreign architecture armhf''' - self._setup_foonux_config(release='wily') + self._setup_foonux_config(release='xenial') obsolete = impl.install_packages(self.rootdir, self.configdir, 'Foonux 1.2', [('coreutils', None), - ('libc6', '2.21-0ubuntu0'), + ('libc6', '2.23-0ubuntu0'), ], False, self.cachedir, architecture='armhf') - self.assertEqual(obsolete, 'libc6 version 2.21-0ubuntu0 required, but 2.21-0ubuntu4 is available\n') + self.assertEqual(obsolete, 'libc6 version 2.23-0ubuntu0 required, but 2.23-0ubuntu3 is available\n') self.assertTrue(os.path.exists(os.path.join(self.rootdir, 'usr/bin/stat'))) @@ -833,8 +834,8 @@ # caches packages cache = os.listdir(os.path.join(self.cachedir, 'Foonux 1.2', 'apt', 'var', 'cache', 'apt', 'archives')) - self.assertTrue('coreutils_8.23-4ubuntu2_armhf.deb' in cache, cache) - self.assertTrue('libc6_2.21-0ubuntu4_armhf.deb' in cache, cache) + self.assertIn('coreutils_8.25-2ubuntu2_armhf.deb', cache) + self.assertIn('libc6_2.23-0ubuntu3_armhf.deb', cache) @unittest.skipUnless(_has_internet(), 'online test') def test_install_packages_from_launchpad(self): @@ -885,8 +886,9 @@ self.assertIn('distro-info-data 0.18ubuntu0.2', pkglist) self.assertIn('qemu-utils-dbgsym 2.0.0+dfsg-2ubuntu1.11', pkglist) - self.assertIn('unity-services-dbgsym 7.2.5+14.04.20150521.1-0ubuntu1', - pkglist) + # FIXME: doesn't work in autopkgtest + # self.assertIn('unity-services-dbgsym 7.2.5+14.04.20150521.1-0ubuntu1', + # pkglist) # caches packages, and their versions are as expected cache = os.listdir(os.path.join(self.cachedir, 'Foonux 1.2', 'apt', @@ -1093,10 +1095,17 @@ # install GPG key for ddebs keyring_dir = os.path.join(self.configdir, 'Foonux 1.2', 'trusted.gpg.d') os.makedirs(keyring_dir, exist_ok=True) + shutil.copy('/usr/share/keyrings/ubuntu-archive-keyring.gpg', keyring_dir) subprocess.check_call(['apt-key', '--keyring', os.path.join(keyring_dir, 'ddebs.ubuntu.com.gpg'), 'adv', '--quiet', '--keyserver', 'keyserver.ubuntu.com', '--recv-key', 'C8CAB6595FDFF622'], stdout=subprocess.DEVNULL) + # Create an architecture specific symlink, otherwise it cannot be + # found for armhf in __AptDpkgPackageInfo._build_apt_sandbox() as + # that looks for trusted.gpg.d relative to sources.list. + keyring_arch_dir = os.path.join(self.configdir, 'Foonux 1.2', 'armhf', 'trusted.gpg.d') + os.symlink("../trusted.gpg.d", keyring_arch_dir) + def assert_elf_arch(self, path, expected): '''Assert that an ELF file is for an expected machine type. --- apport-2.20.3.orig/test/test_report.py +++ apport-2.20.3/test/test_report.py @@ -574,9 +574,9 @@ self.assertNotIn('(no debugging symbols found)', pr['Stacktrace']) self.assertNotIn('Core was generated by', pr['Stacktrace']) self.assertNotRegex(pr['Stacktrace'], r'(?s)(^|.*\n)#0 [^\n]+\n#0 ') - self.assertIn('#0 0x', pr['Stacktrace']) + self.assertIn('#0 ', pr['Stacktrace']) self.assertIn('#1 0x', pr['Stacktrace']) - self.assertIn('#0 0x', pr['ThreadStacktrace']) + self.assertIn('#0 ', pr['ThreadStacktrace']) self.assertIn('#1 0x', pr['ThreadStacktrace']) self.assertIn('Thread 1 (', pr['ThreadStacktrace']) self.assertLessEqual(len(pr['StacktraceTop'].splitlines()), 5) @@ -818,7 +818,8 @@ self._validate_gdb_fields(pr) self.assertFalse('AssertionMessage' in pr, pr.get('AssertionMessage')) - def test_add_gdb_info_abort_glib(self): + # disabled: __glib_assert_msg symbol not available (LP: #1689344) + def disabled_test_add_gdb_info_abort_glib(self): '''add_gdb_info() with glib assertion''' (fd, script) = tempfile.mkstemp() assert not os.path.exists('core') --- apport-2.20.3.orig/test/test_signal_crashes.py +++ apport-2.20.3/test/test_signal_crashes.py @@ -18,7 +18,7 @@ # (core ulimit (bytes), expect core signal, expect core file, expect report) core_ulimit_table = [(1, False, False, False), (1000, True, False, True), - (1000000, True, True, True), + (10000000, True, True, True), (-1, True, True, True)] required_fields = ['ProblemType', 'CoreDump', 'Date', 'ExecutablePath', --- apport-2.20.3.orig/test/test_ui.py +++ apport-2.20.3/test/test_ui.py @@ -441,6 +441,18 @@ self.assertTrue('nonexisting' in self.ui.report['UnreportableReason'], self.ui.report.get('UnreportableReason', '')) + # string with unsafe contents + with open(os.path.join(self.hookdir, 'source_bash.py'), 'w') as f: + f.write('''def add_info(report, ui): + report['CrashDB'] = """{'impl': 'memory', 'trap': exec('open("/tmp/pwned", "w").close()')}""" +''') + + self.ui.report = apport.Report('Bug') + self.ui.cur_package = 'bash' + self.ui.collect_info() + self.assertIn('package hook', self.ui.report['UnreportableReason']) + self.assertFalse(os.path.exists('/tmp/pwned')) + def test_handle_duplicate(self): '''handle_duplicate()''' @@ -473,6 +485,22 @@ self.ui = TestSuiteUserInterface() self.assertEqual(self.ui.run_argv(), False) + def test_run_restart(self): + '''running the frontend with pending reports offers restart''' + + r = self._gen_test_crash() + report_file = os.path.join(apport.fileutils.report_dir, 'test.crash') + with open(report_file, 'wb') as f: + r.write(f) + sys.argv = [] + self.ui = TestSuiteUserInterface() + self.ui.present_details_response = {'report': False, + 'blacklist': False, + 'examine': False, + 'restart': False} + self.ui.run_argv() + self.assertEqual(self.ui.offer_restart, True) + def test_run_report_bug_noargs(self): '''run_report_bug() without specifying arguments''' @@ -761,6 +789,7 @@ self.assertEqual(self.ui.msg_title, None) self.assertEqual(self.ui.opened_url, None) self.assertEqual(self.ui.ic_progress_pulses, 0) + self.assertEqual(self.ui.offer_restart, False) # report in crash notification dialog, send full report with open(report_file, 'wb') as f: @@ -806,6 +835,7 @@ self.assertEqual(self.ui.ic_progress_pulses, 0) self.assertTrue(self.ui.report.check_ignored()) + self.assertEqual(self.ui.offer_restart, False) def test_run_crash_abort(self): '''run_crash() for an abort() without assertion message''' @@ -922,6 +952,43 @@ (self.ui.msg_title, self.ui.msg_text)) self.assertEqual(self.ui.msg_severity, 'info') + def test_run_crash_malicious_crashdb(self): + '''run_crash() on a crash with malicious CrashDB''' + + self.report['ExecutablePath'] = '/bin/bash' + self.report['Package'] = 'bash 1' + self.report['CrashDB'] = "{'impl': 'memory', 'crash_config': open('/tmp/pwned', 'w').close()}" + self.update_report_file() + self.ui.present_details_response = {'report': True, + 'blacklist': False, + 'examine': False, + 'restart': False} + + self.ui.run_crash(self.report_file.name) + + self.assertFalse(os.path.exists('/tmp/pwned')) + self.assertIn('invalid crash database definition', self.ui.msg_text) + + def test_run_crash_malicious_package(self): + '''Package: path traversal''' + + bad_hook = tempfile.NamedTemporaryFile(suffix='.py') + bad_hook.write(b"def add_info(r, u):\n open('/tmp/pwned', 'w').close()") + bad_hook.flush() + + self.report['ExecutablePath'] = '/bin/bash' + self.report['Package'] = '../' * 20 + os.path.splitext(bad_hook.name)[0] + self.update_report_file() + self.ui.present_details_response = {'report': True, + 'blacklist': False, + 'examine': False, + 'restart': False} + + self.ui.run_crash(self.report_file.name) + + self.assertFalse(os.path.exists('/tmp/pwned')) + self.assertIn('invalid Package:', self.ui.msg_text) + def test_run_crash_ignore(self): '''run_crash() on a crash with the Ignore field''' self.report['Ignore'] = 'True' --- apport-2.20.3.orig/test/test_ui_gtk.py +++ apport-2.20.3/test/test_ui_gtk.py @@ -18,6 +18,10 @@ import apport import shutil import subprocess + +import gi +gi.require_version('Gtk', '3.0') + from gi.repository import GLib, Gtk from apport import unicode_gettext as _ from unittest.mock import patch @@ -207,6 +211,8 @@ | [ Show Details ] [ Leave Closed ] [ Relaunch ] | +-----------------------------------------------------------------+ ''' + # pretend we got called through run_crashes() which sets offer_restart + self.app.offer_restart = True self.app.report['ProblemType'] = 'Crash' self.app.report['CrashCounter'] = '1' self.app.report['ProcCmdline'] = 'apport-bug apport' @@ -236,6 +242,39 @@ self.assertTrue(self.app.w('ignore_future_problems').get_label().endswith( 'of this program version')) + def test_regular_crash_layout_norestart(self): + ''' + +-----------------------------------------------------------------+ + | [ apport ] The application Apport has closed unexpectedly. | + | | + | [x] Send an error report to help fix this problem. | + | [ ] Ignore future problems of this program version. | + | | + | [ Show Details ] [ Continue ] | + +-----------------------------------------------------------------+ + ''' + # pretend we did not get called through run_crashes(), thus no offer_restart + self.app.report['ProblemType'] = 'Crash' + self.app.report['CrashCounter'] = '1' + self.app.report['ProcCmdline'] = 'apport-bug apport' + self.app.report['Package'] = 'apport 1.2.3~0ubuntu1' + with tempfile.NamedTemporaryFile() as fp: + fp.write(b'''[Desktop Entry] +Version=1.0 +Name=Apport +Type=Application''') + fp.flush() + self.app.report['DesktopFile'] = fp.name + GLib.idle_add(Gtk.main_quit) + self.app.ui_present_report_details(True) + self.assertEqual(self.app.w('dialog_crash_new').get_title(), self.distro) + self.assertEqual(self.app.w('title_label').get_text(), + _('The application Apport has closed unexpectedly.')) + self.assertTrue(self.app.w('continue_button').get_property('visible')) + self.assertEqual(self.app.w('continue_button').get_label(), + _('Continue')) + self.assertFalse(self.app.w('closed_button').get_property('visible')) + def test_hang_layout(self): ''' +-----------------------------------------------------------------+ @@ -246,6 +285,8 @@ | [ Show Details ] [ Force Closed ] [ Relaunch ] | +-----------------------------------------------------------------+ ''' + # pretend we got called through run_crashes() which sets offer_restart + self.app.offer_restart = True self.app.report['ProblemType'] = 'Hang' self.app.report['ProcCmdline'] = 'apport-bug apport' self.app.report['Package'] = 'apport 1.2.3~0ubuntu1' --- apport-2.20.3.orig/test/test_ui_kde.py +++ apport-2.20.3/test/test_ui_kde.py @@ -202,6 +202,8 @@ | [ Show Details ] [ Leave Closed ] [ Relaunch ] | +-----------------------------------------------------------------+ ''' + # pretend we got called through run_crashes() which sets offer_restart + self.app.offer_restart = True self.app.report['ProblemType'] = 'Crash' self.app.report['CrashCounter'] = '1' self.app.report['ProcCmdline'] = 'apport-bug apport' @@ -231,6 +233,40 @@ self.assertTrue(str(self.app.dialog.ignore_future_problems.text()).endswith( 'of this program version')) + def test_regular_crash_layout_norestart(self): + ''' + +-----------------------------------------------------------------+ + | [ apport ] The application Apport has closed unexpectedly. | + | | + | [x] Send an error report to help fix this problem. | + | [ ] Ignore future problems of this program version. | + | | + | [ Show Details ] [ Continue ] | + +-----------------------------------------------------------------+ + ''' + # pretend we did not get called through run_crashes(), thus no offer_restart + self.app.report['ProblemType'] = 'Crash' + self.app.report['CrashCounter'] = '1' + self.app.report['ProcCmdline'] = 'apport-bug apport' + self.app.report['Package'] = 'apport 1.2.3~0ubuntu1' + with tempfile.NamedTemporaryFile() as fp: + fp.write(b'''[Desktop Entry] +Version=1.0 +Name=Apport +Type=Application''') + fp.flush() + self.app.report['DesktopFile'] = fp.name + QTimer.singleShot(0, QCoreApplication.quit) + self.app.ui_present_report_details(True) + self.assertEqual(self.app.dialog.heading.text(), + _('The application Apport has closed unexpectedly.')) + self.assertTrue(self.app.dialog.send_error_report.isVisible()) + self.assertTrue(self.app.dialog.send_error_report.isChecked()) + self.assertTrue(self.app.dialog.details.isVisible()) + self.assertTrue(self.app.dialog.continue_button.isVisible()) + self.assertEqual(self.app.dialog.continue_button.text(), _('Continue')) + self.assertFalse(self.app.dialog.closed_button.isVisible()) + def test_system_crash_layout(self): ''' +-----------------------------------------------------------------+ @@ -597,4 +633,5 @@ app.applicationDisplayName = _('Apport') app.windowIcon = QIcon.fromTheme('apport') -unittest.main() +# disabled until LP#1442512 gets fixed +# unittest.main()