]> git.saurik.com Git - apt.git/commitdiff
review of new/changed translatable program strings
authorJustin B Rye <justin.byam.rye@gmail.com>
Sat, 21 Nov 2015 16:50:06 +0000 (17:50 +0100)
committerDavid Kalnischkies <david@kalnischkies.de>
Sat, 21 Nov 2015 17:04:29 +0000 (18:04 +0100)
Reference mail:
https://lists.debian.org/debian-l10n-english/2015/11/msg00006.html

71 files changed:
apt-pkg/acquire-item.cc
apt-pkg/contrib/fileutl.h
apt-pkg/contrib/netrc.cc
apt-pkg/deb/debmetaindex.cc
cmdline/apt-cache.cc
cmdline/apt-config.cc
cmdline/apt-helper.cc
cmdline/apt-internal-solver.cc
cmdline/apt-mark.cc
cmdline/apt-sortpkgs.cc
doc/apt-mark.8.xml
doc/apt-secure.8.xml
doc/po/apt-doc.pot
doc/po/de.po
doc/po/es.po
doc/po/fr.po
doc/po/it.po
doc/po/ja.po
doc/po/nl.po
doc/po/pl.po
doc/po/pt.po
doc/po/pt_BR.po
po/apt-all.pot
po/ar.po
po/ast.po
po/bg.po
po/bs.po
po/ca.po
po/cs.po
po/cy.po
po/da.po
po/de.po
po/dz.po
po/el.po
po/es.po
po/eu.po
po/fi.po
po/fr.po
po/gl.po
po/hu.po
po/it.po
po/ja.po
po/km.po
po/ko.po
po/ku.po
po/lt.po
po/mr.po
po/nb.po
po/ne.po
po/nl.po
po/nn.po
po/pl.po
po/pt.po
po/pt_BR.po
po/ro.po
po/ru.po
po/sk.po
po/sl.po
po/sv.po
po/th.po
po/tl.po
po/tr.po
po/uk.po
po/vi.po
po/zh_CN.po
po/zh_TW.po
test/integration/test-apt-get-update-unauth-warning
test/integration/test-apt-update-failure-propagation
test/integration/test-apt-update-ims
test/integration/test-apt-update-nofallback
test/integration/test-sourceslist-trusted-options

index 6444a21b33d7d2146b401bec13458c742dadaaba..ae10ed8f498b59c6c06e59b7be9ed0ad65e6bcfa 100644 (file)
@@ -153,12 +153,12 @@ static bool MessageInsecureRepository(bool const isError, std::string const &msg
    if (isError)
    {
       _error->Error("%s", msg.c_str());
    if (isError)
    {
       _error->Error("%s", msg.c_str());
-      _error->Notice("%s", _("Updating such a repository securily is impossible and therefore disabled by default."));
+      _error->Notice("%s", _("Updating such a repository securely is impossible and therefore disabled by default."));
    }
    else
    {
       _error->Warning("%s", msg.c_str());
    }
    else
    {
       _error->Warning("%s", msg.c_str());
-      _error->Notice("%s", _("Data from such a repository can not be authenticated and is therefore potentially dangerous to use."));
+      _error->Notice("%s", _("Data from such a repository can't be authenticated and is therefore potentially dangerous to use."));
    }
    _error->Notice("%s", _("See apt-secure(8) manpage for repository creation and user configuration details."));
    return false;
    }
    _error->Notice("%s", _("See apt-secure(8) manpage for repository creation and user configuration details."));
    return false;
@@ -1391,7 +1391,7 @@ void pkgAcqMetaClearSig::Failed(string const &Message,pkgAcquire::MethodConfig c
 
       // No Release file was present, or verification failed, so fall
       // back to queueing Packages files without verification
 
       // No Release file was present, or verification failed, so fall
       // back to queueing Packages files without verification
-      // only allow going further if the users explicitely wants it
+      // only allow going further if the user explicitly wants it
       if(AllowInsecureRepositories(_("The repository '%s' is not signed."), ClearsignedTarget.Description, TransactionManager->MetaIndexParser, TransactionManager, this) == true)
       {
         Status = StatDone;
       if(AllowInsecureRepositories(_("The repository '%s' is not signed."), ClearsignedTarget.Description, TransactionManager->MetaIndexParser, TransactionManager, this) == true)
       {
         Status = StatDone;
@@ -1489,7 +1489,7 @@ void pkgAcqMetaIndex::Failed(string const &Message,
 
    // No Release file was present so fall
    // back to queueing Packages files without verification
 
    // No Release file was present so fall
    // back to queueing Packages files without verification
-   // only allow going further if the users explicitely wants it
+   // only allow going further if the user explicitly wants it
    if(AllowInsecureRepositories(_("The repository '%s' does not have a Release file."), Target.Description, TransactionManager->MetaIndexParser, TransactionManager, this) == true)
    {
       // ensure old Release files are removed
    if(AllowInsecureRepositories(_("The repository '%s' does not have a Release file."), Target.Description, TransactionManager->MetaIndexParser, TransactionManager, this) == true)
    {
       // ensure old Release files are removed
@@ -1640,7 +1640,7 @@ void pkgAcqMetaSig::Failed(string const &Message,pkgAcquire::MethodConfig const
    // ensures that a Release.gpg file in the lists/ is removed by the transaction
    TransactionManager->TransactionStageRemoval(this, DestFile);
 
    // ensures that a Release.gpg file in the lists/ is removed by the transaction
    TransactionManager->TransactionStageRemoval(this, DestFile);
 
-   // only allow going further if the users explicitely wants it
+   // only allow going further if the user explicitly wants it
    if (AllowInsecureRepositories(_("The repository '%s' is not signed."), MetaIndex->Target.Description, TransactionManager->MetaIndexParser, TransactionManager, this) == true)
    {
       if (RealFileExists(FinalReleasegpg) || RealFileExists(FinalInRelease))
    if (AllowInsecureRepositories(_("The repository '%s' is not signed."), MetaIndex->Target.Description, TransactionManager->MetaIndexParser, TransactionManager, this) == true)
    {
       if (RealFileExists(FinalReleasegpg) || RealFileExists(FinalInRelease))
index 7176e4dea03f923dc56351a430a269cb3bc6de0e..177a740643472bdb88bac2542a377f7c7e12e484 100644 (file)
@@ -95,7 +95,7 @@ class FileFd
       to be able to support large files (>2 or >4 GB) properly.
       This shouldn't happen all to often for the indexes, but deb's might be…
       And as the auto-conversation converts a 'unsigned long *' to a 'bool'
       to be able to support large files (>2 or >4 GB) properly.
       This shouldn't happen all to often for the indexes, but deb's might be…
       And as the auto-conversation converts a 'unsigned long *' to a 'bool'
-      instead of 'unsigned long long *' we need to provide this explicitely -
+      instead of 'unsigned long long *' we need to provide this explicitly -
       otherwise applications magically start to fail… */
    bool Read(void *To,unsigned long long Size,unsigned long *Actual) APT_DEPRECATED
    {
       otherwise applications magically start to fail… */
    bool Read(void *To,unsigned long long Size,unsigned long *Actual) APT_DEPRECATED
    {
index 1e3778f4540821f248a326a8f70792764bbfb499..8840de72cb581c346bc251c0e2369c2af7b5a4ce 100644 (file)
@@ -116,7 +116,7 @@ static int parsenetrc_string (char *host, std::string &login, std::string &passw
             state = NOTHING;
           break;
         case HOSTVALID:
             state = NOTHING;
           break;
         case HOSTVALID:
-          /* we are now parsing sub-keywords concerning "our" host */
+          /* we are now parsing sub-keywords regarding "our" host */
           if (state_login) {
             if (specific_login)
               state_our_login = !strcasecmp (login.c_str(), tok);
           if (state_login) {
             if (specific_login)
               state_our_login = !strcasecmp (login.c_str(), tok);
index a43ec706fd012eab7f3279b6cd43a3811932875f..930286a410e3568987e16f85c04b9ebc441c3c67 100644 (file)
@@ -536,7 +536,7 @@ bool debReleaseIndex::SetTrusted(TriState const pTrusted)
       Trusted = pTrusted;
    else if (Trusted != pTrusted)
       // TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
       Trusted = pTrusted;
    else if (Trusted != pTrusted)
       // TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
-      return _error->Error(_("Conflicting values set for option %s concerning source %s %s"), "Trusted", URI.c_str(), Dist.c_str());
+      return _error->Error(_("Conflicting values set for option %s regarding source %s %s"), "Trusted", URI.c_str(), Dist.c_str());
    return true;
 }
 bool debReleaseIndex::SetCheckValidUntil(TriState const pCheckValidUntil)
    return true;
 }
 bool debReleaseIndex::SetCheckValidUntil(TriState const pCheckValidUntil)
@@ -544,7 +544,7 @@ bool debReleaseIndex::SetCheckValidUntil(TriState const pCheckValidUntil)
    if (d->CheckValidUntil == TRI_UNSET)
       d->CheckValidUntil = pCheckValidUntil;
    else if (d->CheckValidUntil != pCheckValidUntil)
    if (d->CheckValidUntil == TRI_UNSET)
       d->CheckValidUntil = pCheckValidUntil;
    else if (d->CheckValidUntil != pCheckValidUntil)
-      return _error->Error(_("Conflicting values set for option %s concerning source %s %s"), "Check-Valid-Until", URI.c_str(), Dist.c_str());
+      return _error->Error(_("Conflicting values set for option %s regarding source %s %s"), "Check-Valid-Until", URI.c_str(), Dist.c_str());
    return true;
 }
 bool debReleaseIndex::SetValidUntilMin(time_t const Valid)
    return true;
 }
 bool debReleaseIndex::SetValidUntilMin(time_t const Valid)
@@ -552,7 +552,7 @@ bool debReleaseIndex::SetValidUntilMin(time_t const Valid)
    if (d->ValidUntilMin == 0)
       d->ValidUntilMin = Valid;
    else if (d->ValidUntilMin != Valid)
    if (d->ValidUntilMin == 0)
       d->ValidUntilMin = Valid;
    else if (d->ValidUntilMin != Valid)
-      return _error->Error(_("Conflicting values set for option %s concerning source %s %s"), "Min-ValidTime", URI.c_str(), Dist.c_str());
+      return _error->Error(_("Conflicting values set for option %s regarding source %s %s"), "Min-ValidTime", URI.c_str(), Dist.c_str());
    return true;
 }
 bool debReleaseIndex::SetValidUntilMax(time_t const Valid)
    return true;
 }
 bool debReleaseIndex::SetValidUntilMax(time_t const Valid)
@@ -560,7 +560,7 @@ bool debReleaseIndex::SetValidUntilMax(time_t const Valid)
    if (d->ValidUntilMax == 0)
       d->ValidUntilMax = Valid;
    else if (d->ValidUntilMax != Valid)
    if (d->ValidUntilMax == 0)
       d->ValidUntilMax = Valid;
    else if (d->ValidUntilMax != Valid)
-      return _error->Error(_("Conflicting values set for option %s concerning source %s %s"), "Max-ValidTime", URI.c_str(), Dist.c_str());
+      return _error->Error(_("Conflicting values set for option %s regarding source %s %s"), "Max-ValidTime", URI.c_str(), Dist.c_str());
    return true;
 }
 bool debReleaseIndex::SetSignedBy(std::string const &pSignedBy)
    return true;
 }
 bool debReleaseIndex::SetSignedBy(std::string const &pSignedBy)
@@ -578,12 +578,12 @@ bool debReleaseIndex::SetSignedBy(std::string const &pSignedBy)
         finger.erase(std::remove(finger.begin(), finger.end(), ' '), finger.end());
         std::transform(finger.begin(), finger.end(), finger.begin(), ::toupper);
         if (finger.length() != 40 || finger.find_first_not_of("0123456789ABCDEF") != std::string::npos)
         finger.erase(std::remove(finger.begin(), finger.end(), ' '), finger.end());
         std::transform(finger.begin(), finger.end(), finger.begin(), ::toupper);
         if (finger.length() != 40 || finger.find_first_not_of("0123456789ABCDEF") != std::string::npos)
-           return _error->Error(_("Invalid value set for option %s concerning source %s %s (%s)"), "Signed-By", URI.c_str(), Dist.c_str(), "not a fingerprint");
+           return _error->Error(_("Invalid value set for option %s regarding source %s %s (%s)"), "Signed-By", URI.c_str(), Dist.c_str(), "not a fingerprint");
       }
       SignedBy = pSignedBy;
    }
    else if (SignedBy != pSignedBy)
       }
       SignedBy = pSignedBy;
    }
    else if (SignedBy != pSignedBy)
-      return _error->Error(_("Conflicting values set for option %s concerning source %s %s"), "Signed-By", URI.c_str(), Dist.c_str());
+      return _error->Error(_("Conflicting values set for option %s regarding source %s %s"), "Signed-By", URI.c_str(), Dist.c_str());
    return true;
 }
                                                                        /*}}}*/
    return true;
 }
                                                                        /*}}}*/
index dd14885685d36ceca66e7f36a1aa00ba9b34d510..b70e1db38fe6efe233b53584ef9c92a3b7ed5c03 100644 (file)
@@ -1209,10 +1209,10 @@ bool ShowHelp(CommandLine &)                                            /*{{{*/
       "       apt-cache [options] show pkg1 [pkg2 ...]\n"
       "\n"
       "apt-cache queries and displays available information about installed\n"
       "       apt-cache [options] show pkg1 [pkg2 ...]\n"
       "\n"
       "apt-cache queries and displays available information about installed\n"
-      "as well as installable packages. It works exclusively on the data\n"
-      "acquired via the 'update' command of e.g. apt-get to the local cache.\n"
-      "The displayed information can therefore be outdated if the last update\n"
-      "is too long ago, but in exchange apt-cache works independently of the\n"
+      "and installable packages. It works exclusively on the data acquired\n"
+      "into the local cache via the 'update' command of e.g. apt-get. The\n"
+      "displayed information may therefore be outdated if the last update was\n"
+      "too long ago, but in exchange apt-cache works independently of the\n"
       "availability of the configured sources (e.g. offline).\n");
    return true;
 }
       "availability of the configured sources (e.g. offline).\n");
    return true;
 }
index 8442161d33f4059baa4994d110509860a8452d54..c364b8cdfe227a4259ac80f2f22535117b52cdb0 100644 (file)
@@ -82,7 +82,7 @@ bool ShowHelp(CommandLine &)                                          /*{{{*/
       _("Usage: apt-config [options] command\n"
       "\n"
       "apt-config is an interface to the configuration settings used by\n"
       _("Usage: apt-config [options] command\n"
       "\n"
       "apt-config is an interface to the configuration settings used by\n"
-      "all APT tools to be used mainly in debugging and shell scripting.\n");
+      "all APT tools, mainly intended for debugging and shell scripting.\n");
    return true;
 }
                                                                        /*}}}*/
    return true;
 }
                                                                        /*}}}*/
index 1c67594b99c5a75d09619cdc0fce5c3f434439c2..176a67e03a070d6a3e810010abc68e7802c21796 100644 (file)
@@ -112,7 +112,7 @@ bool ShowHelp(CommandLine &)                                                /*{{{*/
            "       apt-helper [options] download-file uri target-path\n"
            "\n"
            "apt-helper bundles a variety of commands for shell scripts to use\n"
            "       apt-helper [options] download-file uri target-path\n"
            "\n"
            "apt-helper bundles a variety of commands for shell scripts to use\n"
-           "e.g. the same proxy configuration or acquire system as APT would do.\n");
+           "e.g. the same proxy configuration or acquire system as APT would.\n");
    return true;
 }
                                                                        /*}}}*/
    return true;
 }
                                                                        /*}}}*/
index 929fd6e2749cf54b637451a7f1ac0cd9102f15c2..ae90c165569f8692bb5a9f24aa886573e24f6368 100644 (file)
@@ -47,7 +47,8 @@ bool ShowHelp(CommandLine &)                                          /*{{{*/
                _("Usage: apt-internal-solver\n"
                "\n"
                "apt-internal-solver is an interface to use the current internal\n"
                _("Usage: apt-internal-solver\n"
                "\n"
                "apt-internal-solver is an interface to use the current internal\n"
-               "like an external resolver for the APT family for debugging or alike.\n");
+               "resolver for the APT family like an external one, for debugging or\n"
+               "the like.\n");
        return true;
 }
                                                                        /*}}}*/
        return true;
 }
                                                                        /*}}}*/
index 66adfd26807525f457543c8536d5db293106d499..132bd7ef6a803e02065657090042e46e910e5d7d 100644 (file)
@@ -286,9 +286,9 @@ bool ShowHelp(CommandLine &)                                                /*{{{*/
     _("Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n"
       "\n"
       "apt-mark is a simple command line interface for marking packages\n"
     _("Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n"
       "\n"
       "apt-mark is a simple command line interface for marking packages\n"
-      "as manually or automatically installed. It is also possible to\n"
-      "manipulate the dpkg(1) selection states of packages with it.\n"
-      "It can also list all packages with or without a certain marking.\n");
+      "as manually or automatically installed. It can also be used to\n"
+      "manipulate the dpkg(1) selection states of packages, and to list\n"
+      "all packages with or without a certain marking.\n");
    return true;
 }
                                                                        /*}}}*/
    return true;
 }
                                                                        /*}}}*/
index 5057ac626ad47fc53aa57ccc4535dec1252be00e..a4707a9745f4f8b547685cc7a6a1ea05cf31e371 100644 (file)
@@ -138,7 +138,7 @@ bool ShowHelp(CommandLine &)                                                /*{{{*/
     _("Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
       "\n"
       "apt-sortpkgs is a simple tool to sort package information files.\n"
     _("Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
       "\n"
       "apt-sortpkgs is a simple tool to sort package information files.\n"
-      "It sorts by default by binary package information, but the -s option\n"
+      "By default it sorts by binary package information, but the -s option\n"
       "can be used to switch to source package ordering instead.\n");
    return true;
 }
       "can be used to switch to source package ordering instead.\n");
    return true;
 }
index 8dd157a60f00991a52958f0928fe65c7e0ec579c..f9ca6553e19a3f4c871e603ef784d4061b31ab20 100644 (file)
@@ -43,7 +43,7 @@
      When you request that a package is installed, and as a result
      other packages are installed to satisfy its dependencies, the
      dependencies are marked as being automatically installed, while
      When you request that a package is installed, and as a result
      other packages are installed to satisfy its dependencies, the
      dependencies are marked as being automatically installed, while
-     package you installed explicitely is marked as manually installed.
+     package you installed explicitly is marked as manually installed.
      Once a automatically installed package is no longer depended on
      by any manually installed package it is considered no longer needed
      and e.g. <command>apt-get</command> or <command>aptitude</command>
      Once a automatically installed package is no longer depended on
      by any manually installed package it is considered no longer needed
      and e.g. <command>apt-get</command> or <command>aptitude</command>
index 9b4b7378d27637397cc9a225ff77bed5d7df331a..1aab0af8ff424cb859bde6cabe7f03e7b8a322ee 100644 (file)
    as list the trusted keys. Limiting which key(s) are able to sign which archive
    is possible via the <option>Signed-By</option> in &sources-list;.
    </para><para>
    as list the trusted keys. Limiting which key(s) are able to sign which archive
    is possible via the <option>Signed-By</option> in &sources-list;.
    </para><para>
-   Note that a default installation already contains all keys to securily
+   Note that a default installation already contains all keys to securely
    acquire packages from the default repositories, so fiddling with
    <command>apt-key</command> is only needed if third-party repositories are
    added.
    acquire packages from the default repositories, so fiddling with
    <command>apt-key</command> is only needed if third-party repositories are
    added.
 
       <listitem><para>
       <emphasis>Provide instructions on how to add your archive and key</emphasis>.
 
       <listitem><para>
       <emphasis>Provide instructions on how to add your archive and key</emphasis>.
-      If your users can't acquire your key securily the chain of trust described above is broken.
+      If your users can't acquire your key securely the chain of trust described above is broken.
       How you can help users add your key depends on your archive and target audience ranging
       from having your keyring package included in another archive users already have configured
       (like the default repositories of their distribution) to leverage the web of trust.
       How you can help users add your key depends on your archive and target audience ranging
       from having your keyring package included in another archive users already have configured
       (like the default repositories of their distribution) to leverage the web of trust.
index d6c1b4e80b99cc5ca810d342b3adfac5f4e675f3..4d742bfdf1fd7feaf86da8e205dd8c4af03e8f12 100644 (file)
@@ -2046,7 +2046,7 @@ msgstr ""
 msgid ""
 "When you request that a package is installed, and as a result other packages "
 "are installed to satisfy its dependencies, the dependencies are marked as "
 msgid ""
 "When you request that a package is installed, and as a result other packages "
 "are installed to satisfy its dependencies, the dependencies are marked as "
-"being automatically installed, while package you installed explicitely is "
+"being automatically installed, while package you installed explicitly is "
 "marked as manually installed.  Once a automatically installed package is no "
 "longer depended on by any manually installed package it is considered no "
 "longer needed and e.g. <command>apt-get</command> or "
 "marked as manually installed.  Once a automatically installed package is no "
 "longer depended on by any manually installed package it is considered no "
 "longer needed and e.g. <command>apt-get</command> or "
@@ -2298,7 +2298,7 @@ msgstr ""
 #. type: Content of: <refentry><refsect1><para>
 #: apt-secure.8.xml:1
 msgid ""
 #. type: Content of: <refentry><refsect1><para>
 #: apt-secure.8.xml:1
 msgid ""
-"Note that a default installation already contains all keys to securily "
+"Note that a default installation already contains all keys to securely "
 "acquire packages from the default repositories, so fiddling with "
 "<command>apt-key</command> is only needed if third-party repositories are "
 "added."
 "acquire packages from the default repositories, so fiddling with "
 "<command>apt-key</command> is only needed if third-party repositories are "
 "added."
@@ -2357,7 +2357,7 @@ msgstr ""
 #: apt-secure.8.xml:1
 msgid ""
 "<emphasis>Provide instructions on how to add your archive and "
 #: apt-secure.8.xml:1
 msgid ""
 "<emphasis>Provide instructions on how to add your archive and "
-"key</emphasis>.  If your users can't acquire your key securily the chain of "
+"key</emphasis>.  If your users can't acquire your key securely the chain of "
 "trust described above is broken.  How you can help users add your key "
 "depends on your archive and target audience ranging from having your keyring "
 "package included in another archive users already have configured (like the "
 "trust described above is broken.  How you can help users add your key "
 "depends on your archive and target audience ranging from having your keyring "
 "package included in another archive users already have configured (like the "
index 376468eb65fe5a71486a5c784eeb400251aef89c..1a5418ba15ded40b009e835cf77644f244bbc040 100644 (file)
@@ -2873,7 +2873,7 @@ msgstr ""
 msgid ""
 "When you request that a package is installed, and as a result other packages "
 "are installed to satisfy its dependencies, the dependencies are marked as "
 msgid ""
 "When you request that a package is installed, and as a result other packages "
 "are installed to satisfy its dependencies, the dependencies are marked as "
-"being automatically installed, while package you installed explicitely is "
+"being automatically installed, while package you installed explicitly is "
 "marked as manually installed.  Once a automatically installed package is no "
 "longer depended on by any manually installed package it is considered no "
 "longer needed and e.g. <command>apt-get</command> or <command>aptitude</"
 "marked as manually installed.  Once a automatically installed package is no "
 "longer depended on by any manually installed package it is considered no "
 "longer needed and e.g. <command>apt-get</command> or <command>aptitude</"
@@ -3260,7 +3260,7 @@ msgstr ""
 #. type: Content of: <refentry><refsect1><para>
 #: apt-secure.8.xml
 msgid ""
 #. type: Content of: <refentry><refsect1><para>
 #: apt-secure.8.xml
 msgid ""
-"Note that a default installation already contains all keys to securily "
+"Note that a default installation already contains all keys to securely "
 "acquire packages from the default repositories, so fiddling with "
 "<command>apt-key</command> is only needed if third-party repositories are "
 "added."
 "acquire packages from the default repositories, so fiddling with "
 "<command>apt-key</command> is only needed if third-party repositories are "
 "added."
@@ -3342,7 +3342,7 @@ msgstr ""
 #: apt-secure.8.xml
 msgid ""
 "<emphasis>Provide instructions on how to add your archive and key</"
 #: apt-secure.8.xml
 msgid ""
 "<emphasis>Provide instructions on how to add your archive and key</"
-"emphasis>.  If your users can't acquire your key securily the chain of trust "
+"emphasis>.  If your users can't acquire your key securely the chain of trust "
 "described above is broken.  How you can help users add your key depends on "
 "your archive and target audience ranging from having your keyring package "
 "included in another archive users already have configured (like the default "
 "described above is broken.  How you can help users add your key depends on "
 "your archive and target audience ranging from having your keyring package "
 "included in another archive users already have configured (like the default "
index f772ec05329cc62360f26d56904c8b998cd02950..b49a114b067e51fe83c44288b34735abe3f5afd3 100644 (file)
@@ -2943,7 +2943,7 @@ msgstr ""
 msgid ""
 "When you request that a package is installed, and as a result other packages "
 "are installed to satisfy its dependencies, the dependencies are marked as "
 msgid ""
 "When you request that a package is installed, and as a result other packages "
 "are installed to satisfy its dependencies, the dependencies are marked as "
-"being automatically installed, while package you installed explicitely is "
+"being automatically installed, while package you installed explicitly is "
 "marked as manually installed.  Once a automatically installed package is no "
 "longer depended on by any manually installed package it is considered no "
 "longer needed and e.g. <command>apt-get</command> or <command>aptitude</"
 "marked as manually installed.  Once a automatically installed package is no "
 "longer depended on by any manually installed package it is considered no "
 "longer needed and e.g. <command>apt-get</command> or <command>aptitude</"
@@ -3330,7 +3330,7 @@ msgstr ""
 #. type: Content of: <refentry><refsect1><para>
 #: apt-secure.8.xml
 msgid ""
 #. type: Content of: <refentry><refsect1><para>
 #: apt-secure.8.xml
 msgid ""
-"Note that a default installation already contains all keys to securily "
+"Note that a default installation already contains all keys to securely "
 "acquire packages from the default repositories, so fiddling with "
 "<command>apt-key</command> is only needed if third-party repositories are "
 "added."
 "acquire packages from the default repositories, so fiddling with "
 "<command>apt-key</command> is only needed if third-party repositories are "
 "added."
@@ -3411,7 +3411,7 @@ msgstr ""
 #: apt-secure.8.xml
 msgid ""
 "<emphasis>Provide instructions on how to add your archive and key</"
 #: apt-secure.8.xml
 msgid ""
 "<emphasis>Provide instructions on how to add your archive and key</"
-"emphasis>.  If your users can't acquire your key securily the chain of trust "
+"emphasis>.  If your users can't acquire your key securely the chain of trust "
 "described above is broken.  How you can help users add your key depends on "
 "your archive and target audience ranging from having your keyring package "
 "included in another archive users already have configured (like the default "
 "described above is broken.  How you can help users add your key depends on "
 "your archive and target audience ranging from having your keyring package "
 "included in another archive users already have configured (like the default "
index 0d70ad382a4c8e29f766ca98b5dd9fae7315bc09..0b549b9ae6f8c5596f6969021adcd05153dd5acb 100644 (file)
@@ -2866,7 +2866,7 @@ msgstr ""
 msgid ""
 "When you request that a package is installed, and as a result other packages "
 "are installed to satisfy its dependencies, the dependencies are marked as "
 msgid ""
 "When you request that a package is installed, and as a result other packages "
 "are installed to satisfy its dependencies, the dependencies are marked as "
-"being automatically installed, while package you installed explicitely is "
+"being automatically installed, while package you installed explicitly is "
 "marked as manually installed.  Once a automatically installed package is no "
 "longer depended on by any manually installed package it is considered no "
 "longer needed and e.g. <command>apt-get</command> or <command>aptitude</"
 "marked as manually installed.  Once a automatically installed package is no "
 "longer depended on by any manually installed package it is considered no "
 "longer needed and e.g. <command>apt-get</command> or <command>aptitude</"
@@ -3251,7 +3251,7 @@ msgstr ""
 #. type: Content of: <refentry><refsect1><para>
 #: apt-secure.8.xml
 msgid ""
 #. type: Content of: <refentry><refsect1><para>
 #: apt-secure.8.xml
 msgid ""
-"Note that a default installation already contains all keys to securily "
+"Note that a default installation already contains all keys to securely "
 "acquire packages from the default repositories, so fiddling with "
 "<command>apt-key</command> is only needed if third-party repositories are "
 "added."
 "acquire packages from the default repositories, so fiddling with "
 "<command>apt-key</command> is only needed if third-party repositories are "
 "added."
@@ -3332,7 +3332,7 @@ msgstr ""
 #: apt-secure.8.xml
 msgid ""
 "<emphasis>Provide instructions on how to add your archive and key</"
 #: apt-secure.8.xml
 msgid ""
 "<emphasis>Provide instructions on how to add your archive and key</"
-"emphasis>.  If your users can't acquire your key securily the chain of trust "
+"emphasis>.  If your users can't acquire your key securely the chain of trust "
 "described above is broken.  How you can help users add your key depends on "
 "your archive and target audience ranging from having your keyring package "
 "included in another archive users already have configured (like the default "
 "described above is broken.  How you can help users add your key depends on "
 "your archive and target audience ranging from having your keyring package "
 "included in another archive users already have configured (like the default "
index d4587b74c800c132e1417365e2cb862f5aa6e8df..4b5b60edcf9e2f384175d19a922997540bb7e392 100644 (file)
@@ -2907,7 +2907,7 @@ msgstr ""
 msgid ""
 "When you request that a package is installed, and as a result other packages "
 "are installed to satisfy its dependencies, the dependencies are marked as "
 msgid ""
 "When you request that a package is installed, and as a result other packages "
 "are installed to satisfy its dependencies, the dependencies are marked as "
-"being automatically installed, while package you installed explicitely is "
+"being automatically installed, while package you installed explicitly is "
 "marked as manually installed.  Once a automatically installed package is no "
 "longer depended on by any manually installed package it is considered no "
 "longer needed and e.g. <command>apt-get</command> or <command>aptitude</"
 "marked as manually installed.  Once a automatically installed package is no "
 "longer depended on by any manually installed package it is considered no "
 "longer needed and e.g. <command>apt-get</command> or <command>aptitude</"
@@ -3295,7 +3295,7 @@ msgstr ""
 #. type: Content of: <refentry><refsect1><para>
 #: apt-secure.8.xml
 msgid ""
 #. type: Content of: <refentry><refsect1><para>
 #: apt-secure.8.xml
 msgid ""
-"Note that a default installation already contains all keys to securily "
+"Note that a default installation already contains all keys to securely "
 "acquire packages from the default repositories, so fiddling with "
 "<command>apt-key</command> is only needed if third-party repositories are "
 "added."
 "acquire packages from the default repositories, so fiddling with "
 "<command>apt-key</command> is only needed if third-party repositories are "
 "added."
@@ -3376,7 +3376,7 @@ msgstr ""
 #: apt-secure.8.xml
 msgid ""
 "<emphasis>Provide instructions on how to add your archive and key</"
 #: apt-secure.8.xml
 msgid ""
 "<emphasis>Provide instructions on how to add your archive and key</"
-"emphasis>.  If your users can't acquire your key securily the chain of trust "
+"emphasis>.  If your users can't acquire your key securely the chain of trust "
 "described above is broken.  How you can help users add your key depends on "
 "your archive and target audience ranging from having your keyring package "
 "included in another archive users already have configured (like the default "
 "described above is broken.  How you can help users add your key depends on "
 "your archive and target audience ranging from having your keyring package "
 "included in another archive users already have configured (like the default "
index 9266f7ee673f815b721dba2bcf3767b3e6b23ca5..09069caa71d54a989b9ca32f67b856543f8e1102 100644 (file)
@@ -2814,7 +2814,7 @@ msgstr ""
 msgid ""
 "When you request that a package is installed, and as a result other packages "
 "are installed to satisfy its dependencies, the dependencies are marked as "
 msgid ""
 "When you request that a package is installed, and as a result other packages "
 "are installed to satisfy its dependencies, the dependencies are marked as "
-"being automatically installed, while package you installed explicitely is "
+"being automatically installed, while package you installed explicitly is "
 "marked as manually installed.  Once a automatically installed package is no "
 "longer depended on by any manually installed package it is considered no "
 "longer needed and e.g. <command>apt-get</command> or <command>aptitude</"
 "marked as manually installed.  Once a automatically installed package is no "
 "longer depended on by any manually installed package it is considered no "
 "longer needed and e.g. <command>apt-get</command> or <command>aptitude</"
@@ -3190,7 +3190,7 @@ msgstr ""
 #. type: Content of: <refentry><refsect1><para>
 #: apt-secure.8.xml
 msgid ""
 #. type: Content of: <refentry><refsect1><para>
 #: apt-secure.8.xml
 msgid ""
-"Note that a default installation already contains all keys to securily "
+"Note that a default installation already contains all keys to securely "
 "acquire packages from the default repositories, so fiddling with "
 "<command>apt-key</command> is only needed if third-party repositories are "
 "added."
 "acquire packages from the default repositories, so fiddling with "
 "<command>apt-key</command> is only needed if third-party repositories are "
 "added."
@@ -3271,7 +3271,7 @@ msgstr ""
 #: apt-secure.8.xml
 msgid ""
 "<emphasis>Provide instructions on how to add your archive and key</"
 #: apt-secure.8.xml
 msgid ""
 "<emphasis>Provide instructions on how to add your archive and key</"
-"emphasis>.  If your users can't acquire your key securily the chain of trust "
+"emphasis>.  If your users can't acquire your key securely the chain of trust "
 "described above is broken.  How you can help users add your key depends on "
 "your archive and target audience ranging from having your keyring package "
 "included in another archive users already have configured (like the default "
 "described above is broken.  How you can help users add your key depends on "
 "your archive and target audience ranging from having your keyring package "
 "included in another archive users already have configured (like the default "
index 2d6c111e565b858115826e4a4861c160a8169b77..8b8a7a45b76f32a177825e469a6d3e7d41fa7679 100644 (file)
@@ -2937,7 +2937,7 @@ msgstr ""
 msgid ""
 "When you request that a package is installed, and as a result other packages "
 "are installed to satisfy its dependencies, the dependencies are marked as "
 msgid ""
 "When you request that a package is installed, and as a result other packages "
 "are installed to satisfy its dependencies, the dependencies are marked as "
-"being automatically installed, while package you installed explicitely is "
+"being automatically installed, while package you installed explicitly is "
 "marked as manually installed.  Once a automatically installed package is no "
 "longer depended on by any manually installed package it is considered no "
 "longer needed and e.g. <command>apt-get</command> or <command>aptitude</"
 "marked as manually installed.  Once a automatically installed package is no "
 "longer depended on by any manually installed package it is considered no "
 "longer needed and e.g. <command>apt-get</command> or <command>aptitude</"
@@ -3333,7 +3333,7 @@ msgstr ""
 #. type: Content of: <refentry><refsect1><para>
 #: apt-secure.8.xml
 msgid ""
 #. type: Content of: <refentry><refsect1><para>
 #: apt-secure.8.xml
 msgid ""
-"Note that a default installation already contains all keys to securily "
+"Note that a default installation already contains all keys to securely "
 "acquire packages from the default repositories, so fiddling with "
 "<command>apt-key</command> is only needed if third-party repositories are "
 "added."
 "acquire packages from the default repositories, so fiddling with "
 "<command>apt-key</command> is only needed if third-party repositories are "
 "added."
@@ -3415,7 +3415,7 @@ msgstr ""
 #: apt-secure.8.xml
 msgid ""
 "<emphasis>Provide instructions on how to add your archive and key</"
 #: apt-secure.8.xml
 msgid ""
 "<emphasis>Provide instructions on how to add your archive and key</"
-"emphasis>.  If your users can't acquire your key securily the chain of trust "
+"emphasis>.  If your users can't acquire your key securely the chain of trust "
 "described above is broken.  How you can help users add your key depends on "
 "your archive and target audience ranging from having your keyring package "
 "included in another archive users already have configured (like the default "
 "described above is broken.  How you can help users add your key depends on "
 "your archive and target audience ranging from having your keyring package "
 "included in another archive users already have configured (like the default "
index 7052f2c03a1594248d5de38b5bd2d263da9c0675..a0612525ef90295482ffb611638cad38b4d1cb00 100644 (file)
@@ -2977,7 +2977,7 @@ msgstr ""
 msgid ""
 "When you request that a package is installed, and as a result other packages "
 "are installed to satisfy its dependencies, the dependencies are marked as "
 msgid ""
 "When you request that a package is installed, and as a result other packages "
 "are installed to satisfy its dependencies, the dependencies are marked as "
-"being automatically installed, while package you installed explicitely is "
+"being automatically installed, while package you installed explicitly is "
 "marked as manually installed.  Once a automatically installed package is no "
 "longer depended on by any manually installed package it is considered no "
 "longer needed and e.g. <command>apt-get</command> or <command>aptitude</"
 "marked as manually installed.  Once a automatically installed package is no "
 "longer depended on by any manually installed package it is considered no "
 "longer needed and e.g. <command>apt-get</command> or <command>aptitude</"
@@ -3366,7 +3366,7 @@ msgstr ""
 #. type: Content of: <refentry><refsect1><para>
 #: apt-secure.8.xml
 msgid ""
 #. type: Content of: <refentry><refsect1><para>
 #: apt-secure.8.xml
 msgid ""
-"Note that a default installation already contains all keys to securily "
+"Note that a default installation already contains all keys to securely "
 "acquire packages from the default repositories, so fiddling with "
 "<command>apt-key</command> is only needed if third-party repositories are "
 "added."
 "acquire packages from the default repositories, so fiddling with "
 "<command>apt-key</command> is only needed if third-party repositories are "
 "added."
@@ -3444,7 +3444,7 @@ msgstr ""
 #: apt-secure.8.xml
 msgid ""
 "<emphasis>Provide instructions on how to add your archive and key</"
 #: apt-secure.8.xml
 msgid ""
 "<emphasis>Provide instructions on how to add your archive and key</"
-"emphasis>.  If your users can't acquire your key securily the chain of trust "
+"emphasis>.  If your users can't acquire your key securely the chain of trust "
 "described above is broken.  How you can help users add your key depends on "
 "your archive and target audience ranging from having your keyring package "
 "included in another archive users already have configured (like the default "
 "described above is broken.  How you can help users add your key depends on "
 "your archive and target audience ranging from having your keyring package "
 "included in another archive users already have configured (like the default "
index d5675d1dfdeb5a2cddcecb3bd792e5cdd04ef2d8..c8ad01fef450e159627eb42f0abe24e7d1cf00c6 100644 (file)
@@ -2879,7 +2879,7 @@ msgstr ""
 msgid ""
 "When you request that a package is installed, and as a result other packages "
 "are installed to satisfy its dependencies, the dependencies are marked as "
 msgid ""
 "When you request that a package is installed, and as a result other packages "
 "are installed to satisfy its dependencies, the dependencies are marked as "
-"being automatically installed, while package you installed explicitely is "
+"being automatically installed, while package you installed explicitly is "
 "marked as manually installed.  Once a automatically installed package is no "
 "longer depended on by any manually installed package it is considered no "
 "longer needed and e.g. <command>apt-get</command> or <command>aptitude</"
 "marked as manually installed.  Once a automatically installed package is no "
 "longer depended on by any manually installed package it is considered no "
 "longer needed and e.g. <command>apt-get</command> or <command>aptitude</"
@@ -3265,7 +3265,7 @@ msgstr ""
 #. type: Content of: <refentry><refsect1><para>
 #: apt-secure.8.xml
 msgid ""
 #. type: Content of: <refentry><refsect1><para>
 #: apt-secure.8.xml
 msgid ""
-"Note that a default installation already contains all keys to securily "
+"Note that a default installation already contains all keys to securely "
 "acquire packages from the default repositories, so fiddling with "
 "<command>apt-key</command> is only needed if third-party repositories are "
 "added."
 "acquire packages from the default repositories, so fiddling with "
 "<command>apt-key</command> is only needed if third-party repositories are "
 "added."
@@ -3346,7 +3346,7 @@ msgstr ""
 #: apt-secure.8.xml
 msgid ""
 "<emphasis>Provide instructions on how to add your archive and key</"
 #: apt-secure.8.xml
 msgid ""
 "<emphasis>Provide instructions on how to add your archive and key</"
-"emphasis>.  If your users can't acquire your key securily the chain of trust "
+"emphasis>.  If your users can't acquire your key securely the chain of trust "
 "described above is broken.  How you can help users add your key depends on "
 "your archive and target audience ranging from having your keyring package "
 "included in another archive users already have configured (like the default "
 "described above is broken.  How you can help users add your key depends on "
 "your archive and target audience ranging from having your keyring package "
 "included in another archive users already have configured (like the default "
index 78b0541b28bf6017b475d1689db9e420c6fe46ed..0ae4bedc01186c6236cb2332a616701ceb696dc3 100644 (file)
@@ -2025,7 +2025,7 @@ msgstr ""
 msgid ""
 "When you request that a package is installed, and as a result other packages "
 "are installed to satisfy its dependencies, the dependencies are marked as "
 msgid ""
 "When you request that a package is installed, and as a result other packages "
 "are installed to satisfy its dependencies, the dependencies are marked as "
-"being automatically installed, while package you installed explicitely is "
+"being automatically installed, while package you installed explicitly is "
 "marked as manually installed.  Once a automatically installed package is no "
 "longer depended on by any manually installed package it is considered no "
 "longer needed and e.g. <command>apt-get</command> or <command>aptitude</"
 "marked as manually installed.  Once a automatically installed package is no "
 "longer depended on by any manually installed package it is considered no "
 "longer needed and e.g. <command>apt-get</command> or <command>aptitude</"
@@ -2277,7 +2277,7 @@ msgstr ""
 #. type: Content of: <refentry><refsect1><para>
 #: apt-secure.8.xml
 msgid ""
 #. type: Content of: <refentry><refsect1><para>
 #: apt-secure.8.xml
 msgid ""
-"Note that a default installation already contains all keys to securily "
+"Note that a default installation already contains all keys to securely "
 "acquire packages from the default repositories, so fiddling with "
 "<command>apt-key</command> is only needed if third-party repositories are "
 "added."
 "acquire packages from the default repositories, so fiddling with "
 "<command>apt-key</command> is only needed if third-party repositories are "
 "added."
@@ -2336,7 +2336,7 @@ msgstr ""
 #: apt-secure.8.xml
 msgid ""
 "<emphasis>Provide instructions on how to add your archive and key</"
 #: apt-secure.8.xml
 msgid ""
 "<emphasis>Provide instructions on how to add your archive and key</"
-"emphasis>.  If your users can't acquire your key securily the chain of trust "
+"emphasis>.  If your users can't acquire your key securely the chain of trust "
 "described above is broken.  How you can help users add your key depends on "
 "your archive and target audience ranging from having your keyring package "
 "included in another archive users already have configured (like the default "
 "described above is broken.  How you can help users add your key depends on "
 "your archive and target audience ranging from having your keyring package "
 "included in another archive users already have configured (like the default "
index c2460e9a7628784d975c6f51150b73e6f2990c7e..1cae62d6f8e435696570a67c54eb7efdaa3eda8f 100644 (file)
@@ -173,7 +173,7 @@ msgstr ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
-"Configuration options and syntax is detailed in apt.conf(5).\n"
+"Configuration options and syntax are detailed in apt.conf(5).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
@@ -210,7 +210,7 @@ msgstr ""
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
-"--force-yes is deprecated, use one of the options starting with --allow "
+"--force-yes is deprecated; use one of the options starting with --allow "
 "instead."
 msgstr ""
 
 "instead."
 msgstr ""
 
@@ -1143,7 +1143,7 @@ msgstr ""
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
-"apt-cdrom is used to add CDROM's, USB flashdrives and other removable\n"
+"apt-cdrom is used to add CD-ROMs, USB flashdrives and other removable\n"
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
@@ -1283,7 +1283,7 @@ msgid ""
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
-"e.g. the same proxy configuration or acquire system as APT would do.\n"
+"e.g. the same proxy configuration or acquire system as APT would.\n"
 msgstr ""
 
 #: cmdline/apt-helper.cc
 msgstr ""
 
 #: cmdline/apt-helper.cc
@@ -2344,13 +2344,13 @@ msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Updating such a repository securily is impossible and therefore disabled by "
+"Updating such a repository securely is impossible and therefore disabled by "
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Data from such a repository can not be authenticated and is therefore "
+"Data from such a repository can't be authenticated and is therefore "
 "potentially dangerous to use."
 msgstr ""
 
 "potentially dangerous to use."
 msgstr ""
 
@@ -2422,7 +2422,7 @@ msgstr ""
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, c-format
 msgid "The repository '%s' is not signed."
 #: apt-pkg/acquire-item.cc
 #, c-format
 msgid "The repository '%s' is not signed."
@@ -2430,7 +2430,7 @@ msgstr ""
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, c-format
 msgid "The repository '%s' does not have a Release file."
 #: apt-pkg/acquire-item.cc
 #, c-format
 msgid "The repository '%s' does not have a Release file."
@@ -3027,12 +3027,12 @@ msgstr ""
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Conflicting values set for option %s concerning source %s %s"
+msgid "Conflicting values set for option %s regarding source %s %s"
 msgstr ""
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 msgstr ""
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Invalid value set for option %s concerning source %s %s (%s)"
+msgid "Invalid value set for option %s regarding source %s %s (%s)"
 msgstr ""
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
 msgstr ""
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
index 93b67aa6ddd1f4cbcd98358001876beec4e585e8..b6759007b994d0fb89852b8587df3272b340f885 100644 (file)
--- a/po/ar.po
+++ b/po/ar.po
@@ -180,7 +180,7 @@ msgstr ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
-"Configuration options and syntax is detailed in apt.conf(5).\n"
+"Configuration options and syntax are detailed in apt.conf(5).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
@@ -217,7 +217,7 @@ msgstr "تثبيت هذه الحزم دون التحقق منها؟"
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
-"--force-yes is deprecated, use one of the options starting with --allow "
+"--force-yes is deprecated; use one of the options starting with --allow "
 "instead."
 msgstr ""
 
 "instead."
 msgstr ""
 
@@ -1180,7 +1180,7 @@ msgstr "كرر هذه العملية لباقي الأقراص المدمجة ف
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
-"apt-cdrom is used to add CDROM's, USB flashdrives and other removable\n"
+"apt-cdrom is used to add CD-ROMs, USB flashdrives and other removable\n"
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
@@ -1324,7 +1324,7 @@ msgid ""
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
-"e.g. the same proxy configuration or acquire system as APT would do.\n"
+"e.g. the same proxy configuration or acquire system as APT would.\n"
 msgstr ""
 
 #: cmdline/apt-helper.cc
 msgstr ""
 
 #: cmdline/apt-helper.cc
@@ -2397,13 +2397,13 @@ msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Updating such a repository securily is impossible and therefore disabled by "
+"Updating such a repository securely is impossible and therefore disabled by "
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Data from such a repository can not be authenticated and is therefore "
+"Data from such a repository can't be authenticated and is therefore "
 "potentially dangerous to use."
 msgstr ""
 
 "potentially dangerous to use."
 msgstr ""
 
@@ -2478,7 +2478,7 @@ msgstr ""
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' is not signed."
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' is not signed."
@@ -2486,7 +2486,7 @@ msgstr "المسار %s طويل جداً"
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' does not have a Release file."
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' does not have a Release file."
@@ -3088,12 +3088,12 @@ msgstr "لاحظ، تحديد %s بدلاً من %s\n"
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Conflicting values set for option %s concerning source %s %s"
+msgid "Conflicting values set for option %s regarding source %s %s"
 msgstr ""
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 msgstr ""
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Invalid value set for option %s concerning source %s %s (%s)"
+msgid "Invalid value set for option %s regarding source %s %s (%s)"
 msgstr ""
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
 msgstr ""
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
index f31141ccaa316b98a2fe9dc3cb9fe3520fa33043..604fb4f74c89c83eac4bb305e762a1b98cf81def 100644 (file)
--- a/po/ast.po
+++ b/po/ast.po
@@ -179,7 +179,7 @@ msgstr ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
-"Configuration options and syntax is detailed in apt.conf(5).\n"
+"Configuration options and syntax are detailed in apt.conf(5).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
@@ -216,7 +216,7 @@ msgstr "¿Instalar esos paquetes ensin verificación?"
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
-"--force-yes is deprecated, use one of the options starting with --allow "
+"--force-yes is deprecated; use one of the options starting with --allow "
 "instead."
 msgstr ""
 
 "instead."
 msgstr ""
 
@@ -1210,7 +1210,7 @@ msgstr "Repite'l procesu colos demás CDs del conxuntu."
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
-"apt-cdrom is used to add CDROM's, USB flashdrives and other removable\n"
+"apt-cdrom is used to add CD-ROMs, USB flashdrives and other removable\n"
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
@@ -1359,7 +1359,7 @@ msgid ""
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
-"e.g. the same proxy configuration or acquire system as APT would do.\n"
+"e.g. the same proxy configuration or acquire system as APT would.\n"
 msgstr ""
 
 #: cmdline/apt-helper.cc
 msgstr ""
 
 #: cmdline/apt-helper.cc
@@ -2504,13 +2504,13 @@ msgstr "Descargando ficheru %li de %li"
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Updating such a repository securily is impossible and therefore disabled by "
+"Updating such a repository securely is impossible and therefore disabled by "
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Data from such a repository can not be authenticated and is therefore "
+"Data from such a repository can't be authenticated and is therefore "
 "potentially dangerous to use."
 msgstr ""
 
 "potentially dangerous to use."
 msgstr ""
 
@@ -2586,7 +2586,7 @@ msgstr "Conflictu de distribución: %s (esperábase %s pero obtúvose %s)"
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' is not signed."
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' is not signed."
@@ -2594,7 +2594,7 @@ msgstr "El direutorio %s ta desviáu"
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' does not have a Release file."
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' does not have a Release file."
@@ -3221,12 +3221,12 @@ msgstr "Entrada inválida pa 'Valid-Until' nel ficheru release %s"
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Conflicting values set for option %s concerning source %s %s"
+msgid "Conflicting values set for option %s regarding source %s %s"
 msgstr ""
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 msgstr ""
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Invalid value set for option %s concerning source %s %s (%s)"
+msgid "Invalid value set for option %s regarding source %s %s (%s)"
 msgstr ""
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
 msgstr ""
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
index 1648e15bbc3814bd4298b06f263cf85ea0df65d5..3d9344e99534efe226bef1a671953c1458c38099 100644 (file)
--- a/po/bg.po
+++ b/po/bg.po
@@ -189,7 +189,7 @@ msgstr ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
-"Configuration options and syntax is detailed in apt.conf(5).\n"
+"Configuration options and syntax are detailed in apt.conf(5).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
@@ -226,7 +226,7 @@ msgstr "Инсталиране на тези пакети без проверк
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
-"--force-yes is deprecated, use one of the options starting with --allow "
+"--force-yes is deprecated; use one of the options starting with --allow "
 "instead."
 msgstr ""
 
 "instead."
 msgstr ""
 
@@ -1226,7 +1226,7 @@ msgstr "Повторете този процес за останалите ди
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
-"apt-cdrom is used to add CDROM's, USB flashdrives and other removable\n"
+"apt-cdrom is used to add CD-ROMs, USB flashdrives and other removable\n"
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
@@ -1377,7 +1377,7 @@ msgid ""
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
-"e.g. the same proxy configuration or acquire system as APT would do.\n"
+"e.g. the same proxy configuration or acquire system as APT would.\n"
 msgstr ""
 
 #: cmdline/apt-helper.cc
 msgstr ""
 
 #: cmdline/apt-helper.cc
@@ -2529,13 +2529,13 @@ msgstr "Изтегляне на файл %li от %li"
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Updating such a repository securily is impossible and therefore disabled by "
+"Updating such a repository securely is impossible and therefore disabled by "
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Data from such a repository can not be authenticated and is therefore "
+"Data from such a repository can't be authenticated and is therefore "
 "potentially dangerous to use."
 msgstr ""
 
 "potentially dangerous to use."
 msgstr ""
 
@@ -2615,7 +2615,7 @@ msgstr "Конфликт в дистрибуцията: %s (очаквана: %s
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' is not signed."
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' is not signed."
@@ -2623,7 +2623,7 @@ msgstr "Директорията %s е отклонена"
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' does not have a Release file."
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' does not have a Release file."
@@ -3258,12 +3258,12 @@ msgstr "Неправилна стойност за „Valid-Until“ във фа
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Conflicting values set for option %s concerning source %s %s"
+msgid "Conflicting values set for option %s regarding source %s %s"
 msgstr ""
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 msgstr ""
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Invalid value set for option %s concerning source %s %s (%s)"
+msgid "Invalid value set for option %s regarding source %s %s (%s)"
 msgstr ""
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
 msgstr ""
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
index ac4cb3758cf54bab1f59b6a55c3bb6eb5f7dd005..33ccadec04a1acf31daa93bcf399429c6aa467bf 100644 (file)
--- a/po/bs.po
+++ b/po/bs.po
@@ -176,7 +176,7 @@ msgstr ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
-"Configuration options and syntax is detailed in apt.conf(5).\n"
+"Configuration options and syntax are detailed in apt.conf(5).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
@@ -214,7 +214,7 @@ msgstr ""
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
-"--force-yes is deprecated, use one of the options starting with --allow "
+"--force-yes is deprecated; use one of the options starting with --allow "
 "instead."
 msgstr ""
 
 "instead."
 msgstr ""
 
@@ -1162,7 +1162,7 @@ msgstr ""
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
-"apt-cdrom is used to add CDROM's, USB flashdrives and other removable\n"
+"apt-cdrom is used to add CD-ROMs, USB flashdrives and other removable\n"
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
@@ -1304,7 +1304,7 @@ msgid ""
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
-"e.g. the same proxy configuration or acquire system as APT would do.\n"
+"e.g. the same proxy configuration or acquire system as APT would.\n"
 msgstr ""
 
 #: cmdline/apt-helper.cc
 msgstr ""
 
 #: cmdline/apt-helper.cc
@@ -2376,13 +2376,13 @@ msgstr "Čitam spisak datoteke"
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Updating such a repository securily is impossible and therefore disabled by "
+"Updating such a repository securely is impossible and therefore disabled by "
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Data from such a repository can not be authenticated and is therefore "
+"Data from such a repository can't be authenticated and is therefore "
 "potentially dangerous to use."
 msgstr ""
 
 "potentially dangerous to use."
 msgstr ""
 
@@ -2455,7 +2455,7 @@ msgstr ""
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, c-format
 msgid "The repository '%s' is not signed."
 #: apt-pkg/acquire-item.cc
 #, c-format
 msgid "The repository '%s' is not signed."
@@ -2463,7 +2463,7 @@ msgstr ""
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, c-format
 msgid "The repository '%s' does not have a Release file."
 #: apt-pkg/acquire-item.cc
 #, c-format
 msgid "The repository '%s' does not have a Release file."
@@ -3066,12 +3066,12 @@ msgstr ""
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Conflicting values set for option %s concerning source %s %s"
+msgid "Conflicting values set for option %s regarding source %s %s"
 msgstr ""
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 msgstr ""
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Invalid value set for option %s concerning source %s %s (%s)"
+msgid "Invalid value set for option %s regarding source %s %s (%s)"
 msgstr ""
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
 msgstr ""
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
index 879a5c827b9912d30983b4fcf43b0b0e7ba7cf76..eb8a563dd05f9e2d9271bb7c0e5b9ae19e03dc63 100644 (file)
--- a/po/ca.po
+++ b/po/ca.po
@@ -184,7 +184,7 @@ msgstr ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
-"Configuration options and syntax is detailed in apt.conf(5).\n"
+"Configuration options and syntax are detailed in apt.conf(5).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
@@ -221,7 +221,7 @@ msgstr "Voleu instaŀlar aquests paquets sense verificar-los?"
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
-"--force-yes is deprecated, use one of the options starting with --allow "
+"--force-yes is deprecated; use one of the options starting with --allow "
 "instead."
 msgstr ""
 
 "instead."
 msgstr ""
 
@@ -1229,7 +1229,7 @@ msgstr "Repetiu aquest procés per a la resta de CD del vostre joc."
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
-"apt-cdrom is used to add CDROM's, USB flashdrives and other removable\n"
+"apt-cdrom is used to add CD-ROMs, USB flashdrives and other removable\n"
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
@@ -1381,7 +1381,7 @@ msgid ""
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
-"e.g. the same proxy configuration or acquire system as APT would do.\n"
+"e.g. the same proxy configuration or acquire system as APT would.\n"
 msgstr ""
 
 #: cmdline/apt-helper.cc
 msgstr ""
 
 #: cmdline/apt-helper.cc
@@ -2528,13 +2528,13 @@ msgstr "S'està obtenint el fitxer %li de %li"
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Updating such a repository securily is impossible and therefore disabled by "
+"Updating such a repository securely is impossible and therefore disabled by "
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Data from such a repository can not be authenticated and is therefore "
+"Data from such a repository can't be authenticated and is therefore "
 "potentially dangerous to use."
 msgstr ""
 
 "potentially dangerous to use."
 msgstr ""
 
@@ -2615,7 +2615,7 @@ msgstr "Distribució en conflicte: %s (s'esperava %s però s'ha obtingut %s)"
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' is not signed."
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' is not signed."
@@ -2623,7 +2623,7 @@ msgstr "El directori %s està desviat"
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' does not have a Release file."
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' does not have a Release file."
@@ -3261,12 +3261,12 @@ msgstr "El camp «Valid-Until» al fitxer Release %s és invàlid"
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Conflicting values set for option %s concerning source %s %s"
+msgid "Conflicting values set for option %s regarding source %s %s"
 msgstr ""
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 msgstr ""
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Invalid value set for option %s concerning source %s %s (%s)"
+msgid "Invalid value set for option %s regarding source %s %s (%s)"
 msgstr ""
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
 msgstr ""
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
index ddcb38261aed75120a8564e1d1a35480302012d1..d4313683a68aec6f4c576b21858172bddf8f4646 100644 (file)
--- a/po/cs.po
+++ b/po/cs.po
@@ -181,7 +181,7 @@ msgstr ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
-"Configuration options and syntax is detailed in apt.conf(5).\n"
+"Configuration options and syntax are detailed in apt.conf(5).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
@@ -218,7 +218,7 @@ msgstr "Instalovat tyto balíky bez ověření?"
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
-"--force-yes is deprecated, use one of the options starting with --allow "
+"--force-yes is deprecated; use one of the options starting with --allow "
 "instead."
 msgstr ""
 "--force-yes je zastaralé, použijte některou z voleb začínajících --allow."
 "instead."
 msgstr ""
 "--force-yes je zastaralé, použijte některou z voleb začínajících --allow."
@@ -1215,7 +1215,7 @@ msgstr "Tento proces opakujte pro všechna zbývající média."
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
-"apt-cdrom is used to add CDROM's, USB flashdrives and other removable\n"
+"apt-cdrom is used to add CD-ROMs, USB flashdrives and other removable\n"
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
@@ -1365,7 +1365,7 @@ msgid ""
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
-"e.g. the same proxy configuration or acquire system as APT would do.\n"
+"e.g. the same proxy configuration or acquire system as APT would.\n"
 msgstr ""
 "Použití: apt-helper [volby] příkaz\n"
 "         apt-helper [volby] download-file uri cílová_cesta\n"
 msgstr ""
 "Použití: apt-helper [volby] příkaz\n"
 "         apt-helper [volby] download-file uri cílová_cesta\n"
@@ -2508,13 +2508,13 @@ msgstr "Stahuje se soubor %li z %li"
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Updating such a repository securily is impossible and therefore disabled by "
+"Updating such a repository securely is impossible and therefore disabled by "
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Data from such a repository can not be authenticated and is therefore "
+"Data from such a repository can't be authenticated and is therefore "
 "potentially dangerous to use."
 msgstr ""
 
 "potentially dangerous to use."
 msgstr ""
 
@@ -2592,7 +2592,7 @@ msgstr "Konfliktní distribuce: %s (očekáváno %s, obdrženo %s)"
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' is not signed."
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' is not signed."
@@ -2600,7 +2600,7 @@ msgstr "Repositář „%s“ není podepsán."
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' does not have a Release file."
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' does not have a Release file."
@@ -3223,12 +3223,12 @@ msgstr "Neplatná položka „Valid-Until“ v Release souboru %s"
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Conflicting values set for option %s concerning source %s %s"
+msgid "Conflicting values set for option %s regarding source %s %s"
 msgstr "Pro volbu %s byly nastaveny kolidující hodnoty zdroje %s %s"
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 msgstr "Pro volbu %s byly nastaveny kolidující hodnoty zdroje %s %s"
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Invalid value set for option %s concerning source %s %s (%s)"
+msgid "Invalid value set for option %s regarding source %s %s (%s)"
 msgstr "Pro volbu %s byla nastavena kolidující hodnota zdroje %s %s (%s)"
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
 msgstr "Pro volbu %s byla nastavena kolidující hodnota zdroje %s %s (%s)"
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
index 2d19b84ff8540944c89f7c84dba820ec03e3394c..67b5359ff07895a5a223d160efb0ac8acb206d05 100644 (file)
--- a/po/cy.po
+++ b/po/cy.po
@@ -182,7 +182,7 @@ msgstr ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
-"Configuration options and syntax is detailed in apt.conf(5).\n"
+"Configuration options and syntax are detailed in apt.conf(5).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
@@ -221,7 +221,7 @@ msgstr ""
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
-"--force-yes is deprecated, use one of the options starting with --allow "
+"--force-yes is deprecated; use one of the options starting with --allow "
 "instead."
 msgstr ""
 
 "instead."
 msgstr ""
 
@@ -1228,7 +1228,7 @@ msgstr ""
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
-"apt-cdrom is used to add CDROM's, USB flashdrives and other removable\n"
+"apt-cdrom is used to add CD-ROMs, USB flashdrives and other removable\n"
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
@@ -1380,7 +1380,7 @@ msgid ""
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
-"e.g. the same proxy configuration or acquire system as APT would do.\n"
+"e.g. the same proxy configuration or acquire system as APT would.\n"
 msgstr ""
 
 #: cmdline/apt-helper.cc
 msgstr ""
 
 #: cmdline/apt-helper.cc
@@ -2544,13 +2544,13 @@ msgstr "Yn Darllen Rhestr Ffeiliau"
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Updating such a repository securily is impossible and therefore disabled by "
+"Updating such a repository securely is impossible and therefore disabled by "
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Data from such a repository can not be authenticated and is therefore "
+"Data from such a repository can't be authenticated and is therefore "
 "potentially dangerous to use."
 msgstr ""
 
 "potentially dangerous to use."
 msgstr ""
 
@@ -2625,7 +2625,7 @@ msgstr ""
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' is not signed."
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' is not signed."
@@ -2633,7 +2633,7 @@ msgstr "Mae'r cyfeiriadur %s wedi ei ddargyfeirio"
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' does not have a Release file."
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' does not have a Release file."
@@ -3259,12 +3259,12 @@ msgstr "Llinell annilys yn y ffeil dargyfeirio: %s"
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Conflicting values set for option %s concerning source %s %s"
+msgid "Conflicting values set for option %s regarding source %s %s"
 msgstr ""
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 msgstr ""
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Invalid value set for option %s concerning source %s %s (%s)"
+msgid "Invalid value set for option %s regarding source %s %s (%s)"
 msgstr ""
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
 msgstr ""
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
index fc02ff7fd3fd40da2a339e4a573b81744d306897..e5b880eaf5db6adba5d4c994285d81a3547d0f32 100644 (file)
--- a/po/da.po
+++ b/po/da.po
@@ -183,7 +183,7 @@ msgstr ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
-"Configuration options and syntax is detailed in apt.conf(5).\n"
+"Configuration options and syntax are detailed in apt.conf(5).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
@@ -220,7 +220,7 @@ msgstr "Installér disse pakker uden verifikation?"
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
-"--force-yes is deprecated, use one of the options starting with --allow "
+"--force-yes is deprecated; use one of the options starting with --allow "
 "instead."
 msgstr ""
 
 "instead."
 msgstr ""
 
@@ -1222,7 +1222,7 @@ msgstr "Gentag processen for resten af cd'erne i dit sæt."
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
-"apt-cdrom is used to add CDROM's, USB flashdrives and other removable\n"
+"apt-cdrom is used to add CD-ROMs, USB flashdrives and other removable\n"
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
@@ -1373,7 +1373,7 @@ msgid ""
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
-"e.g. the same proxy configuration or acquire system as APT would do.\n"
+"e.g. the same proxy configuration or acquire system as APT would.\n"
 msgstr ""
 "Brug: apt-helper [tilvalg] kommando\n"
 "      apt-helper [tilvalg] download-file uri target-path\n"
 msgstr ""
 "Brug: apt-helper [tilvalg] kommando\n"
 "      apt-helper [tilvalg] download-file uri target-path\n"
@@ -2526,13 +2526,13 @@ msgstr "Henter fil %li ud af %li"
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Updating such a repository securily is impossible and therefore disabled by "
+"Updating such a repository securely is impossible and therefore disabled by "
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Data from such a repository can not be authenticated and is therefore "
+"Data from such a repository can't be authenticated and is therefore "
 "potentially dangerous to use."
 msgstr ""
 
 "potentially dangerous to use."
 msgstr ""
 
@@ -2612,7 +2612,7 @@ msgstr "Konfliktdistribution: %s (forventede %s men fik %s)"
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' is not signed."
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' is not signed."
@@ -2620,7 +2620,7 @@ msgstr "Mappen %s er omrokeret"
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' does not have a Release file."
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' does not have a Release file."
@@ -3239,12 +3239,12 @@ msgstr "Ugyldigt punkt »Valid-Until« i udgivelsesfil %s"
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Conflicting values set for option %s concerning source %s %s"
+msgid "Conflicting values set for option %s regarding source %s %s"
 msgstr ""
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 msgstr ""
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Invalid value set for option %s concerning source %s %s (%s)"
+msgid "Invalid value set for option %s regarding source %s %s (%s)"
 msgstr ""
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
 msgstr ""
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
index e059ac53491b0ca576872e815e503d46863ee8e2..1ce93e8bce2bf4bdb8e425741e14ba696b5c3209 100644 (file)
--- a/po/de.po
+++ b/po/de.po
@@ -186,7 +186,7 @@ msgstr ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
-"Configuration options and syntax is detailed in apt.conf(5).\n"
+"Configuration options and syntax are detailed in apt.conf(5).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
@@ -223,7 +223,7 @@ msgstr "Diese Pakete ohne Überprüfung installieren?"
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
-"--force-yes is deprecated, use one of the options starting with --allow "
+"--force-yes is deprecated; use one of the options starting with --allow "
 "instead."
 msgstr ""
 
 "instead."
 msgstr ""
 
@@ -1260,7 +1260,7 @@ msgstr ""
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
-"apt-cdrom is used to add CDROM's, USB flashdrives and other removable\n"
+"apt-cdrom is used to add CD-ROMs, USB flashdrives and other removable\n"
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
@@ -1413,7 +1413,7 @@ msgid ""
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
-"e.g. the same proxy configuration or acquire system as APT would do.\n"
+"e.g. the same proxy configuration or acquire system as APT would.\n"
 msgstr ""
 "Aufruf: apt-helper [Optionen] Befehl\n"
 "        apt-helper [Optionen] download-file URI Zielpfad\n"
 msgstr ""
 "Aufruf: apt-helper [Optionen] Befehl\n"
 "        apt-helper [Optionen] download-file URI Zielpfad\n"
@@ -2588,13 +2588,13 @@ msgstr "Holen der Datei %li von %li"
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Updating such a repository securily is impossible and therefore disabled by "
+"Updating such a repository securely is impossible and therefore disabled by "
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Data from such a repository can not be authenticated and is therefore "
+"Data from such a repository can't be authenticated and is therefore "
 "potentially dangerous to use."
 msgstr ""
 
 "potentially dangerous to use."
 msgstr ""
 
@@ -2675,7 +2675,7 @@ msgstr "Konflikt bei Distribution: %s (%s erwartet, aber %s bekommen)"
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' is not signed."
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' is not signed."
@@ -2683,7 +2683,7 @@ msgstr "Das Verzeichnis %s ist umgeleitet."
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' does not have a Release file."
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' does not have a Release file."
@@ -3330,12 +3330,12 @@ msgstr "Ungültiger »Valid-Until«-Eintrag in Release-Datei %s"
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Conflicting values set for option %s concerning source %s %s"
+msgid "Conflicting values set for option %s regarding source %s %s"
 msgstr ""
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 msgstr ""
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Invalid value set for option %s concerning source %s %s (%s)"
+msgid "Invalid value set for option %s regarding source %s %s (%s)"
 msgstr ""
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
 msgstr ""
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
index 3a1d3ab91e28ac100d2050decb1ba6d9bca8fd1a..02856a785f8888c68d431f297317e60a097dcad6 100644 (file)
--- a/po/dz.po
+++ b/po/dz.po
@@ -184,7 +184,7 @@ msgstr ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
-"Configuration options and syntax is detailed in apt.conf(5).\n"
+"Configuration options and syntax are detailed in apt.conf(5).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
@@ -222,7 +222,7 @@ msgstr "བདེན་སྦྱོར་མ་འབད་བར་འ་ནི
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
-"--force-yes is deprecated, use one of the options starting with --allow "
+"--force-yes is deprecated; use one of the options starting with --allow "
 "instead."
 msgstr ""
 
 "instead."
 msgstr ""
 
@@ -1203,7 +1203,7 @@ msgstr "ཁྱོད་ཀྱི་ཆ་ཚན་ནང་གི་སི་ཌ
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
-"apt-cdrom is used to add CDROM's, USB flashdrives and other removable\n"
+"apt-cdrom is used to add CD-ROMs, USB flashdrives and other removable\n"
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
@@ -1353,7 +1353,7 @@ msgid ""
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
-"e.g. the same proxy configuration or acquire system as APT would do.\n"
+"e.g. the same proxy configuration or acquire system as APT would.\n"
 msgstr ""
 
 #: cmdline/apt-helper.cc
 msgstr ""
 
 #: cmdline/apt-helper.cc
@@ -2504,13 +2504,13 @@ msgstr " %li་གི་བརླག་སྟོར་ཟུགསཔའི་
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Updating such a repository securily is impossible and therefore disabled by "
+"Updating such a repository securely is impossible and therefore disabled by "
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Data from such a repository can not be authenticated and is therefore "
+"Data from such a repository can't be authenticated and is therefore "
 "potentially dangerous to use."
 msgstr ""
 
 "potentially dangerous to use."
 msgstr ""
 
@@ -2585,7 +2585,7 @@ msgstr ""
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' is not signed."
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' is not signed."
@@ -2593,7 +2593,7 @@ msgstr "སྣོད་ཐོ་%s་འདི་ཁ་ཕྱོགས་སྒ
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' does not have a Release file."
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' does not have a Release file."
@@ -3204,12 +3204,12 @@ msgstr "%s་ཁ་ཕྱོགས་ཡིག་སྣོད་ནང་ནུ
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Conflicting values set for option %s concerning source %s %s"
+msgid "Conflicting values set for option %s regarding source %s %s"
 msgstr ""
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 msgstr ""
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Invalid value set for option %s concerning source %s %s (%s)"
+msgid "Invalid value set for option %s regarding source %s %s (%s)"
 msgstr ""
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
 msgstr ""
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
index 4421354df2ed2a9a45cea3680d916a60a6162b91..b701ae583aaed2787be34bd1343de806abe291d4 100644 (file)
--- a/po/el.po
+++ b/po/el.po
@@ -195,7 +195,7 @@ msgstr ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
-"Configuration options and syntax is detailed in apt.conf(5).\n"
+"Configuration options and syntax are detailed in apt.conf(5).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
@@ -232,7 +232,7 @@ msgstr "Εγκατάσταση των πακέτων χωρίς επαλήθευ
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
-"--force-yes is deprecated, use one of the options starting with --allow "
+"--force-yes is deprecated; use one of the options starting with --allow "
 "instead."
 msgstr ""
 
 "instead."
 msgstr ""
 
@@ -1222,7 +1222,7 @@ msgstr "Επαναλάβετε την διαδικασία για τα υπόλ
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
-"apt-cdrom is used to add CDROM's, USB flashdrives and other removable\n"
+"apt-cdrom is used to add CD-ROMs, USB flashdrives and other removable\n"
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
@@ -1375,7 +1375,7 @@ msgid ""
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
-"e.g. the same proxy configuration or acquire system as APT would do.\n"
+"e.g. the same proxy configuration or acquire system as APT would.\n"
 msgstr ""
 
 #: cmdline/apt-helper.cc
 msgstr ""
 
 #: cmdline/apt-helper.cc
@@ -2527,13 +2527,13 @@ msgstr "Λήψη αρχείου %li του %li"
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Updating such a repository securily is impossible and therefore disabled by "
+"Updating such a repository securely is impossible and therefore disabled by "
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Data from such a repository can not be authenticated and is therefore "
+"Data from such a repository can't be authenticated and is therefore "
 "potentially dangerous to use."
 msgstr ""
 
 "potentially dangerous to use."
 msgstr ""
 
@@ -2607,7 +2607,7 @@ msgstr ""
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' is not signed."
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' is not signed."
@@ -2615,7 +2615,7 @@ msgstr "Ο φάκελος %s έχει εκτραπεί"
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' does not have a Release file."
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' does not have a Release file."
@@ -3237,12 +3237,12 @@ msgstr "Μη έγκυρη γραμμή στο αρχείο παρακάμψεω
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Conflicting values set for option %s concerning source %s %s"
+msgid "Conflicting values set for option %s regarding source %s %s"
 msgstr ""
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 msgstr ""
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Invalid value set for option %s concerning source %s %s (%s)"
+msgid "Invalid value set for option %s regarding source %s %s (%s)"
 msgstr ""
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
 msgstr ""
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
index b50012e79820ec6c213d64c2c45326cace58c7db..219245fc6a073b20463304d4286628e8b6a5fe42 100644 (file)
--- a/po/es.po
+++ b/po/es.po
@@ -239,7 +239,7 @@ msgstr ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
-"Configuration options and syntax is detailed in apt.conf(5).\n"
+"Configuration options and syntax are detailed in apt.conf(5).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
@@ -276,7 +276,7 @@ msgstr "¿Instalar estos paquetes sin verificación?"
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
-"--force-yes is deprecated, use one of the options starting with --allow "
+"--force-yes is deprecated; use one of the options starting with --allow "
 "instead."
 msgstr ""
 
 "instead."
 msgstr ""
 
@@ -1283,7 +1283,7 @@ msgstr "Repita este proceso para el resto de los CDs del conjunto."
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
-"apt-cdrom is used to add CDROM's, USB flashdrives and other removable\n"
+"apt-cdrom is used to add CD-ROMs, USB flashdrives and other removable\n"
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
@@ -1434,7 +1434,7 @@ msgid ""
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
-"e.g. the same proxy configuration or acquire system as APT would do.\n"
+"e.g. the same proxy configuration or acquire system as APT would.\n"
 msgstr ""
 "Uso: apt-helper [opciones] orden\n"
 "     apt-helper [opciones] fichero-descarga uri ruta-destino\n"
 msgstr ""
 "Uso: apt-helper [opciones] orden\n"
 "     apt-helper [opciones] fichero-descarga uri ruta-destino\n"
@@ -2594,13 +2594,13 @@ msgstr "Descargando fichero %li de %li"
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Updating such a repository securily is impossible and therefore disabled by "
+"Updating such a repository securely is impossible and therefore disabled by "
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Data from such a repository can not be authenticated and is therefore "
+"Data from such a repository can't be authenticated and is therefore "
 "potentially dangerous to use."
 msgstr ""
 
 "potentially dangerous to use."
 msgstr ""
 
@@ -2682,7 +2682,7 @@ msgstr "Distribución conflictiva: %s (se esperaba %s, pero se obtuvo %s)"
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' is not signed."
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' is not signed."
@@ -2690,7 +2690,7 @@ msgstr "El directorio %s está desviado"
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' does not have a Release file."
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' does not have a Release file."
@@ -3333,12 +3333,12 @@ msgstr "Entrada «Valid-Until» inválida en el archivo «Release» %s"
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Conflicting values set for option %s concerning source %s %s"
+msgid "Conflicting values set for option %s regarding source %s %s"
 msgstr ""
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 msgstr ""
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Invalid value set for option %s concerning source %s %s (%s)"
+msgid "Invalid value set for option %s regarding source %s %s (%s)"
 msgstr ""
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
 msgstr ""
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
index af506991ef83015739e961a852206732680a85bb..8a6c0075329473bd5233ed812ebfd63dfcdf6687 100644 (file)
--- a/po/eu.po
+++ b/po/eu.po
@@ -183,7 +183,7 @@ msgstr ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
-"Configuration options and syntax is detailed in apt.conf(5).\n"
+"Configuration options and syntax are detailed in apt.conf(5).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
@@ -220,7 +220,7 @@ msgstr "Paketeak egiaztapen gabe instalatu?"
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
-"--force-yes is deprecated, use one of the options starting with --allow "
+"--force-yes is deprecated; use one of the options starting with --allow "
 "instead."
 msgstr ""
 
 "instead."
 msgstr ""
 
@@ -1208,7 +1208,7 @@ msgstr "Prozesu hau bildumako beste CD guztiekin errepikatu."
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
-"apt-cdrom is used to add CDROM's, USB flashdrives and other removable\n"
+"apt-cdrom is used to add CD-ROMs, USB flashdrives and other removable\n"
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
@@ -1357,7 +1357,7 @@ msgid ""
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
-"e.g. the same proxy configuration or acquire system as APT would do.\n"
+"e.g. the same proxy configuration or acquire system as APT would.\n"
 msgstr ""
 
 #: cmdline/apt-helper.cc
 msgstr ""
 
 #: cmdline/apt-helper.cc
@@ -2503,13 +2503,13 @@ msgstr "%li fitxategia jasotzen %li-tik"
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Updating such a repository securily is impossible and therefore disabled by "
+"Updating such a repository securely is impossible and therefore disabled by "
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Data from such a repository can not be authenticated and is therefore "
+"Data from such a repository can't be authenticated and is therefore "
 "potentially dangerous to use."
 msgstr ""
 
 "potentially dangerous to use."
 msgstr ""
 
@@ -2583,7 +2583,7 @@ msgstr ""
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' is not signed."
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' is not signed."
@@ -2591,7 +2591,7 @@ msgstr "%s direktorioa desbideratuta dago"
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' does not have a Release file."
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' does not have a Release file."
@@ -3207,12 +3207,12 @@ msgstr "Lerro baliogabea desbideratze fitxategian: %s"
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Conflicting values set for option %s concerning source %s %s"
+msgid "Conflicting values set for option %s regarding source %s %s"
 msgstr ""
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 msgstr ""
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Invalid value set for option %s concerning source %s %s (%s)"
+msgid "Invalid value set for option %s regarding source %s %s (%s)"
 msgstr ""
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
 msgstr ""
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
index 19f06041b85e69962ab7683cb7e493372e8ff3b4..6523ec144fc61af3ab62db74e13fd4d90281e1c1 100644 (file)
--- a/po/fi.po
+++ b/po/fi.po
@@ -183,7 +183,7 @@ msgstr ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
-"Configuration options and syntax is detailed in apt.conf(5).\n"
+"Configuration options and syntax are detailed in apt.conf(5).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
@@ -220,7 +220,7 @@ msgstr "Asennetaanko nämä paketit ilman todennusta?"
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
-"--force-yes is deprecated, use one of the options starting with --allow "
+"--force-yes is deprecated; use one of the options starting with --allow "
 "instead."
 msgstr ""
 
 "instead."
 msgstr ""
 
@@ -1204,7 +1204,7 @@ msgstr "Toista tämä lopuille rompuille kasassasi."
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
-"apt-cdrom is used to add CDROM's, USB flashdrives and other removable\n"
+"apt-cdrom is used to add CD-ROMs, USB flashdrives and other removable\n"
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
@@ -1353,7 +1353,7 @@ msgid ""
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
-"e.g. the same proxy configuration or acquire system as APT would do.\n"
+"e.g. the same proxy configuration or acquire system as APT would.\n"
 msgstr ""
 
 #: cmdline/apt-helper.cc
 msgstr ""
 
 #: cmdline/apt-helper.cc
@@ -2500,13 +2500,13 @@ msgstr "Noudetaan tiedosto %li / %li"
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Updating such a repository securily is impossible and therefore disabled by "
+"Updating such a repository securely is impossible and therefore disabled by "
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Data from such a repository can not be authenticated and is therefore "
+"Data from such a repository can't be authenticated and is therefore "
 "potentially dangerous to use."
 msgstr ""
 
 "potentially dangerous to use."
 msgstr ""
 
@@ -2580,7 +2580,7 @@ msgstr ""
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' is not signed."
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' is not signed."
@@ -2588,7 +2588,7 @@ msgstr "Kansio %s on korvautunut"
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' does not have a Release file."
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' does not have a Release file."
@@ -3198,12 +3198,12 @@ msgstr "Virheellinen rivi korvautustiedostossa: %s"
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Conflicting values set for option %s concerning source %s %s"
+msgid "Conflicting values set for option %s regarding source %s %s"
 msgstr ""
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 msgstr ""
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Invalid value set for option %s concerning source %s %s (%s)"
+msgid "Invalid value set for option %s regarding source %s %s (%s)"
 msgstr ""
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
 msgstr ""
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
index 65be3f5610235d6886124becebd991f37d9243b2..d46b3dac9a8ce6c467092cb19f9d96617ffe2070 100644 (file)
--- a/po/fr.po
+++ b/po/fr.po
@@ -187,7 +187,7 @@ msgstr ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
-"Configuration options and syntax is detailed in apt.conf(5).\n"
+"Configuration options and syntax are detailed in apt.conf(5).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
@@ -224,7 +224,7 @@ msgstr "Faut-il installer ces paquets sans vérification ?"
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
-"--force-yes is deprecated, use one of the options starting with --allow "
+"--force-yes is deprecated; use one of the options starting with --allow "
 "instead."
 msgstr ""
 
 "instead."
 msgstr ""
 
@@ -1247,7 +1247,7 @@ msgstr ""
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
-"apt-cdrom is used to add CDROM's, USB flashdrives and other removable\n"
+"apt-cdrom is used to add CD-ROMs, USB flashdrives and other removable\n"
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
@@ -1402,7 +1402,7 @@ msgid ""
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
-"e.g. the same proxy configuration or acquire system as APT would do.\n"
+"e.g. the same proxy configuration or acquire system as APT would.\n"
 msgstr ""
 
 #: cmdline/apt-helper.cc
 msgstr ""
 
 #: cmdline/apt-helper.cc
@@ -2567,13 +2567,13 @@ msgstr "Téléchargement du fichier %li sur %li"
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Updating such a repository securily is impossible and therefore disabled by "
+"Updating such a repository securely is impossible and therefore disabled by "
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Data from such a repository can not be authenticated and is therefore "
+"Data from such a repository can't be authenticated and is therefore "
 "potentially dangerous to use."
 msgstr ""
 
 "potentially dangerous to use."
 msgstr ""
 
@@ -2654,7 +2654,7 @@ msgstr "Distribution en conflit : %s (%s attendu, mais %s obtenu)"
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' is not signed."
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' is not signed."
@@ -2662,7 +2662,7 @@ msgstr "Le répertoire %s est détourné"
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' does not have a Release file."
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' does not have a Release file."
@@ -3315,12 +3315,12 @@ msgstr "Entrée « Valid-Until » non valable dans le fichier Release %s"
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Conflicting values set for option %s concerning source %s %s"
+msgid "Conflicting values set for option %s regarding source %s %s"
 msgstr ""
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 msgstr ""
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Invalid value set for option %s concerning source %s %s (%s)"
+msgid "Invalid value set for option %s regarding source %s %s (%s)"
 msgstr ""
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
 msgstr ""
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
index d47db847420dcc1aa39b9864a58b94c0c72d7284..fa6e7581a65ad61863eb9d297e4da1ece8766766 100644 (file)
--- a/po/gl.po
+++ b/po/gl.po
@@ -186,7 +186,7 @@ msgstr ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
-"Configuration options and syntax is detailed in apt.conf(5).\n"
+"Configuration options and syntax are detailed in apt.conf(5).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
@@ -223,7 +223,7 @@ msgstr "Instalar estes paquetes sen verificación?"
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
-"--force-yes is deprecated, use one of the options starting with --allow "
+"--force-yes is deprecated; use one of the options starting with --allow "
 "instead."
 msgstr ""
 
 "instead."
 msgstr ""
 
@@ -1226,7 +1226,7 @@ msgstr "Repita este proceso para o resto de CD do seu conxunto."
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
-"apt-cdrom is used to add CDROM's, USB flashdrives and other removable\n"
+"apt-cdrom is used to add CD-ROMs, USB flashdrives and other removable\n"
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
@@ -1375,7 +1375,7 @@ msgid ""
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
-"e.g. the same proxy configuration or acquire system as APT would do.\n"
+"e.g. the same proxy configuration or acquire system as APT would.\n"
 msgstr ""
 
 #: cmdline/apt-helper.cc
 msgstr ""
 
 #: cmdline/apt-helper.cc
@@ -2525,13 +2525,13 @@ msgstr "Obtendo o ficheiro %li de %li"
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Updating such a repository securily is impossible and therefore disabled by "
+"Updating such a repository securely is impossible and therefore disabled by "
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Data from such a repository can not be authenticated and is therefore "
+"Data from such a repository can't be authenticated and is therefore "
 "potentially dangerous to use."
 msgstr ""
 
 "potentially dangerous to use."
 msgstr ""
 
@@ -2610,7 +2610,7 @@ msgstr "Conflito na distribución: %s (agardábase %s mais obtívose %s)"
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' is not signed."
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' is not signed."
@@ -2618,7 +2618,7 @@ msgstr "O directorio %s está desviado"
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' does not have a Release file."
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' does not have a Release file."
@@ -3255,12 +3255,12 @@ msgstr "A entrada «Valid-Until» no ficheiro de publicación %s non é válida"
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Conflicting values set for option %s concerning source %s %s"
+msgid "Conflicting values set for option %s regarding source %s %s"
 msgstr ""
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 msgstr ""
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Invalid value set for option %s concerning source %s %s (%s)"
+msgid "Invalid value set for option %s regarding source %s %s (%s)"
 msgstr ""
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
 msgstr ""
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
index 700d5524007dee41f634a311fa0be67eeead6bce..45ff7972d0480bfb020a3907c229679bb84cdeb1 100644 (file)
--- a/po/hu.po
+++ b/po/hu.po
@@ -185,7 +185,7 @@ msgstr ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
-"Configuration options and syntax is detailed in apt.conf(5).\n"
+"Configuration options and syntax are detailed in apt.conf(5).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
@@ -222,7 +222,7 @@ msgstr "Valóban ellenőrzés nélkül telepíti a csomagokat?"
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
-"--force-yes is deprecated, use one of the options starting with --allow "
+"--force-yes is deprecated; use one of the options starting with --allow "
 "instead."
 msgstr ""
 
 "instead."
 msgstr ""
 
@@ -1220,7 +1220,7 @@ msgstr "Ismételje meg a folyamatot készlete többi CD-jével is."
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
-"apt-cdrom is used to add CDROM's, USB flashdrives and other removable\n"
+"apt-cdrom is used to add CD-ROMs, USB flashdrives and other removable\n"
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
@@ -1371,7 +1371,7 @@ msgid ""
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
-"e.g. the same proxy configuration or acquire system as APT would do.\n"
+"e.g. the same proxy configuration or acquire system as APT would.\n"
 msgstr ""
 
 #: cmdline/apt-helper.cc
 msgstr ""
 
 #: cmdline/apt-helper.cc
@@ -2520,13 +2520,13 @@ msgstr "%li/%li fájl letöltése"
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Updating such a repository securily is impossible and therefore disabled by "
+"Updating such a repository securely is impossible and therefore disabled by "
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Data from such a repository can not be authenticated and is therefore "
+"Data from such a repository can't be authenticated and is therefore "
 "potentially dangerous to use."
 msgstr ""
 
 "potentially dangerous to use."
 msgstr ""
 
@@ -2606,7 +2606,7 @@ msgstr "Ütköző disztribúció: %s (a várt %s helyett %s érkezett)"
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' is not signed."
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' is not signed."
@@ -2614,7 +2614,7 @@ msgstr "A(z) %s könyvtár eltérítve"
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' does not have a Release file."
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' does not have a Release file."
@@ -3246,12 +3246,12 @@ msgstr "Érvénytelen „Valid-Until” bejegyzés a(z) %s Release fájlban"
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Conflicting values set for option %s concerning source %s %s"
+msgid "Conflicting values set for option %s regarding source %s %s"
 msgstr ""
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 msgstr ""
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Invalid value set for option %s concerning source %s %s (%s)"
+msgid "Invalid value set for option %s regarding source %s %s (%s)"
 msgstr ""
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
 msgstr ""
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
index afa50e8432776a59a9a48aae051ad90240ea895d..9c57c5f9b7e3d11bf60cfc092bb1492b22a9519f 100644 (file)
--- a/po/it.po
+++ b/po/it.po
@@ -185,7 +185,7 @@ msgstr ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
-"Configuration options and syntax is detailed in apt.conf(5).\n"
+"Configuration options and syntax are detailed in apt.conf(5).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
@@ -222,7 +222,7 @@ msgstr "Installare questi pacchetti senza verificarli?"
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
-"--force-yes is deprecated, use one of the options starting with --allow "
+"--force-yes is deprecated; use one of the options starting with --allow "
 "instead."
 msgstr ""
 
 "instead."
 msgstr ""
 
@@ -1242,7 +1242,7 @@ msgstr "Ripetere questo processo per il resto dei CD."
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
-"apt-cdrom is used to add CDROM's, USB flashdrives and other removable\n"
+"apt-cdrom is used to add CD-ROMs, USB flashdrives and other removable\n"
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
@@ -1392,7 +1392,7 @@ msgid ""
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
-"e.g. the same proxy configuration or acquire system as APT would do.\n"
+"e.g. the same proxy configuration or acquire system as APT would.\n"
 msgstr ""
 "Uso: apt-helper [OPZIONI] COMANDO\n"
 "     apt-helper [OPZIONI] download-file uri percorso\n"
 msgstr ""
 "Uso: apt-helper [OPZIONI] COMANDO\n"
 "     apt-helper [OPZIONI] download-file uri percorso\n"
@@ -2555,13 +2555,13 @@ msgstr "Scaricamento file %li di %li"
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Updating such a repository securily is impossible and therefore disabled by "
+"Updating such a repository securely is impossible and therefore disabled by "
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Data from such a repository can not be authenticated and is therefore "
+"Data from such a repository can't be authenticated and is therefore "
 "potentially dangerous to use."
 msgstr ""
 
 "potentially dangerous to use."
 msgstr ""
 
@@ -2641,7 +2641,7 @@ msgstr "Distribuzione in conflitto: %s (atteso %s ma ottenuto %s)"
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' is not signed."
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' is not signed."
@@ -2649,7 +2649,7 @@ msgstr "La directory %s è deviata"
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' does not have a Release file."
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' does not have a Release file."
@@ -3297,12 +3297,12 @@ msgstr "Voce \"Valid-Until\" nel file Release %s non valida"
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Conflicting values set for option %s concerning source %s %s"
+msgid "Conflicting values set for option %s regarding source %s %s"
 msgstr ""
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 msgstr ""
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Invalid value set for option %s concerning source %s %s (%s)"
+msgid "Invalid value set for option %s regarding source %s %s (%s)"
 msgstr ""
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
 msgstr ""
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
index 647db9875f80d3d8089b8603793bf36980588352..632885b6876887b91904962c14b151e0f0fc0e1a 100644 (file)
--- a/po/ja.po
+++ b/po/ja.po
@@ -185,7 +185,7 @@ msgstr ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
-"Configuration options and syntax is detailed in apt.conf(5).\n"
+"Configuration options and syntax are detailed in apt.conf(5).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
@@ -222,7 +222,7 @@ msgstr "検証なしにこれらのパッケージをインストールします
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
-"--force-yes is deprecated, use one of the options starting with --allow "
+"--force-yes is deprecated; use one of the options starting with --allow "
 "instead."
 msgstr ""
 
 "instead."
 msgstr ""
 
@@ -1221,7 +1221,7 @@ msgstr ""
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
-"apt-cdrom is used to add CDROM's, USB flashdrives and other removable\n"
+"apt-cdrom is used to add CD-ROMs, USB flashdrives and other removable\n"
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
@@ -1375,7 +1375,7 @@ msgid ""
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
-"e.g. the same proxy configuration or acquire system as APT would do.\n"
+"e.g. the same proxy configuration or acquire system as APT would.\n"
 msgstr ""
 "使用法: apt-helper [オプション] コマンド\n"
 "        apt-helper [オプション] download-file uri 目標パス\n"
 msgstr ""
 "使用法: apt-helper [オプション] コマンド\n"
 "        apt-helper [オプション] download-file uri 目標パス\n"
@@ -2519,13 +2519,13 @@ msgstr "ファイルを取得しています %li/%li"
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Updating such a repository securily is impossible and therefore disabled by "
+"Updating such a repository securely is impossible and therefore disabled by "
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Data from such a repository can not be authenticated and is therefore "
+"Data from such a repository can't be authenticated and is therefore "
 "potentially dangerous to use."
 msgstr ""
 
 "potentially dangerous to use."
 msgstr ""
 
@@ -2606,7 +2606,7 @@ msgstr ""
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' is not signed."
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' is not signed."
@@ -2614,7 +2614,7 @@ msgstr "ディレクトリ %s は divert されています"
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' does not have a Release file."
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' does not have a Release file."
@@ -3244,12 +3244,12 @@ msgstr "Release ファイル %s に無効な 'Valid-Until' エントリがあり
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Conflicting values set for option %s concerning source %s %s"
+msgid "Conflicting values set for option %s regarding source %s %s"
 msgstr ""
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 msgstr ""
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Invalid value set for option %s concerning source %s %s (%s)"
+msgid "Invalid value set for option %s regarding source %s %s (%s)"
 msgstr ""
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
 msgstr ""
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
index 15af207950e44cb2a9037e762448a89abef090cb..ce2436a968e13ef3abfe59ba0c12a5da8e7cc676 100644 (file)
--- a/po/km.po
+++ b/po/km.po
@@ -186,7 +186,7 @@ msgstr ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
-"Configuration options and syntax is detailed in apt.conf(5).\n"
+"Configuration options and syntax are detailed in apt.conf(5).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
@@ -224,7 +224,7 @@ msgstr "ដំឡើង​កញ្ចប់​ទាំងនេះ ​ដោ
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
-"--force-yes is deprecated, use one of the options starting with --allow "
+"--force-yes is deprecated; use one of the options starting with --allow "
 "instead."
 msgstr ""
 
 "instead."
 msgstr ""
 
@@ -1194,7 +1194,7 @@ msgstr "ធ្វើដំណើរការ​នេះ​ម្តង​ទៀ
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
-"apt-cdrom is used to add CDROM's, USB flashdrives and other removable\n"
+"apt-cdrom is used to add CD-ROMs, USB flashdrives and other removable\n"
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
@@ -1343,7 +1343,7 @@ msgid ""
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
-"e.g. the same proxy configuration or acquire system as APT would do.\n"
+"e.g. the same proxy configuration or acquire system as APT would.\n"
 msgstr ""
 
 #: cmdline/apt-helper.cc
 msgstr ""
 
 #: cmdline/apt-helper.cc
@@ -2480,13 +2480,13 @@ msgstr "កំពុង​ទៅយក​ឯកសារ %li នៃ %li"
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Updating such a repository securily is impossible and therefore disabled by "
+"Updating such a repository securely is impossible and therefore disabled by "
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Data from such a repository can not be authenticated and is therefore "
+"Data from such a repository can't be authenticated and is therefore "
 "potentially dangerous to use."
 msgstr ""
 
 "potentially dangerous to use."
 msgstr ""
 
@@ -2561,7 +2561,7 @@ msgstr ""
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' is not signed."
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' is not signed."
@@ -2569,7 +2569,7 @@ msgstr "ថត​ %s ត្រូវបាន​បង្វែរ"
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' does not have a Release file."
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' does not have a Release file."
@@ -3176,12 +3176,12 @@ msgstr "បន្ទាត់​ដែលមិនត្រឹមត្រូវ
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Conflicting values set for option %s concerning source %s %s"
+msgid "Conflicting values set for option %s regarding source %s %s"
 msgstr ""
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 msgstr ""
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Invalid value set for option %s concerning source %s %s (%s)"
+msgid "Invalid value set for option %s regarding source %s %s (%s)"
 msgstr ""
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
 msgstr ""
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
index 96de737df91c4cba36d8d1ec0d160b5d7492a3fe..4fcc372606dcd16086d876a077c413221bfe6fe1 100644 (file)
--- a/po/ko.po
+++ b/po/ko.po
@@ -180,7 +180,7 @@ msgstr ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
-"Configuration options and syntax is detailed in apt.conf(5).\n"
+"Configuration options and syntax are detailed in apt.conf(5).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
@@ -217,7 +217,7 @@ msgstr "확인하지 않고 패키지를 설치하시겠습니까?"
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
-"--force-yes is deprecated, use one of the options starting with --allow "
+"--force-yes is deprecated; use one of the options starting with --allow "
 "instead."
 msgstr ""
 
 "instead."
 msgstr ""
 
@@ -1199,7 +1199,7 @@ msgstr "현재 갖고 있는 다른 CD에도 이 과정을 반복하십시오."
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
-"apt-cdrom is used to add CDROM's, USB flashdrives and other removable\n"
+"apt-cdrom is used to add CD-ROMs, USB flashdrives and other removable\n"
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
@@ -1347,7 +1347,7 @@ msgid ""
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
-"e.g. the same proxy configuration or acquire system as APT would do.\n"
+"e.g. the same proxy configuration or acquire system as APT would.\n"
 msgstr ""
 
 #: cmdline/apt-helper.cc
 msgstr ""
 
 #: cmdline/apt-helper.cc
@@ -2486,13 +2486,13 @@ msgstr "파일 받아오는 중: %2$li 중 %1$li"
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Updating such a repository securily is impossible and therefore disabled by "
+"Updating such a repository securely is impossible and therefore disabled by "
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Data from such a repository can not be authenticated and is therefore "
+"Data from such a repository can't be authenticated and is therefore "
 "potentially dangerous to use."
 msgstr ""
 
 "potentially dangerous to use."
 msgstr ""
 
@@ -2568,7 +2568,7 @@ msgstr "배포판 충돌: %s (예상값 %s, 실제값 %s)"
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' is not signed."
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' is not signed."
@@ -2576,7 +2576,7 @@ msgstr "%s 디렉터리가 전환되었습니다"
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' does not have a Release file."
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' does not have a Release file."
@@ -3189,12 +3189,12 @@ msgstr "Release 파일 %s에 'Valid-Until' 항목이 잘못되었습니다"
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Conflicting values set for option %s concerning source %s %s"
+msgid "Conflicting values set for option %s regarding source %s %s"
 msgstr ""
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 msgstr ""
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Invalid value set for option %s concerning source %s %s (%s)"
+msgid "Invalid value set for option %s regarding source %s %s (%s)"
 msgstr ""
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
 msgstr ""
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
index 92e30d5e720198e42c01c796f2792461e9060469..5b591a2ca96f4c85a1c933de0ebe450fb4e51fbf 100644 (file)
--- a/po/ku.po
+++ b/po/ku.po
@@ -179,7 +179,7 @@ msgstr ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
-"Configuration options and syntax is detailed in apt.conf(5).\n"
+"Configuration options and syntax are detailed in apt.conf(5).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
@@ -216,7 +216,7 @@ msgstr ""
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
-"--force-yes is deprecated, use one of the options starting with --allow "
+"--force-yes is deprecated; use one of the options starting with --allow "
 "instead."
 msgstr ""
 
 "instead."
 msgstr ""
 
@@ -1166,7 +1166,7 @@ msgstr ""
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
-"apt-cdrom is used to add CDROM's, USB flashdrives and other removable\n"
+"apt-cdrom is used to add CD-ROMs, USB flashdrives and other removable\n"
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
@@ -1306,7 +1306,7 @@ msgid ""
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
-"e.g. the same proxy configuration or acquire system as APT would do.\n"
+"e.g. the same proxy configuration or acquire system as APT would.\n"
 msgstr ""
 
 #: cmdline/apt-helper.cc
 msgstr ""
 
 #: cmdline/apt-helper.cc
@@ -2392,13 +2392,13 @@ msgstr "Pel tê anîn %li ji %li"
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Updating such a repository securily is impossible and therefore disabled by "
+"Updating such a repository securely is impossible and therefore disabled by "
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Data from such a repository can not be authenticated and is therefore "
+"Data from such a repository can't be authenticated and is therefore "
 "potentially dangerous to use."
 msgstr ""
 
 "potentially dangerous to use."
 msgstr ""
 
@@ -2471,7 +2471,7 @@ msgstr ""
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' is not signed."
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' is not signed."
@@ -2479,7 +2479,7 @@ msgstr "Rêça %s zêde dirêj e"
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' does not have a Release file."
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' does not have a Release file."
@@ -3081,12 +3081,12 @@ msgstr ""
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Conflicting values set for option %s concerning source %s %s"
+msgid "Conflicting values set for option %s regarding source %s %s"
 msgstr ""
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 msgstr ""
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Invalid value set for option %s concerning source %s %s (%s)"
+msgid "Invalid value set for option %s regarding source %s %s (%s)"
 msgstr ""
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
 msgstr ""
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
index 0f4a3ee84dbc929485cd91a4e8cffcd756d076b4..a2b70956f81a33eecc06ba52365e3d187b5e8367 100644 (file)
--- a/po/lt.po
+++ b/po/lt.po
@@ -186,7 +186,7 @@ msgstr ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
-"Configuration options and syntax is detailed in apt.conf(5).\n"
+"Configuration options and syntax are detailed in apt.conf(5).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
@@ -223,7 +223,7 @@ msgstr "Įdiegti šiuos paketus be patvirtinimo?"
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
-"--force-yes is deprecated, use one of the options starting with --allow "
+"--force-yes is deprecated; use one of the options starting with --allow "
 "instead."
 msgstr ""
 
 "instead."
 msgstr ""
 
@@ -1199,7 +1199,7 @@ msgstr "Pakartokite šitą procesą su kitais CD savo rinkinyje."
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
-"apt-cdrom is used to add CDROM's, USB flashdrives and other removable\n"
+"apt-cdrom is used to add CD-ROMs, USB flashdrives and other removable\n"
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
@@ -1343,7 +1343,7 @@ msgid ""
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
-"e.g. the same proxy configuration or acquire system as APT would do.\n"
+"e.g. the same proxy configuration or acquire system as APT would.\n"
 msgstr ""
 
 #: cmdline/apt-helper.cc
 msgstr ""
 
 #: cmdline/apt-helper.cc
@@ -2487,13 +2487,13 @@ msgstr "Parsiunčiamas %li failas iš %li"
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Updating such a repository securily is impossible and therefore disabled by "
+"Updating such a repository securely is impossible and therefore disabled by "
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Data from such a repository can not be authenticated and is therefore "
+"Data from such a repository can't be authenticated and is therefore "
 "potentially dangerous to use."
 msgstr ""
 
 "potentially dangerous to use."
 msgstr ""
 
@@ -2567,7 +2567,7 @@ msgstr ""
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' is not signed."
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' is not signed."
@@ -2575,7 +2575,7 @@ msgstr "Kelias %s per ilgas"
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' does not have a Release file."
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' does not have a Release file."
@@ -3179,12 +3179,12 @@ msgstr "Pastaba: pažymimas %s vietoje %s\n"
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Conflicting values set for option %s concerning source %s %s"
+msgid "Conflicting values set for option %s regarding source %s %s"
 msgstr ""
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 msgstr ""
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Invalid value set for option %s concerning source %s %s (%s)"
+msgid "Invalid value set for option %s regarding source %s %s (%s)"
 msgstr ""
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
 msgstr ""
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
index 06b4e7ad2985eb85f1566ca827c21e01bc280f27..76e598545d234d09a42be9d39bbcf28cfc9e51b0 100644 (file)
--- a/po/mr.po
+++ b/po/mr.po
@@ -182,7 +182,7 @@ msgstr ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
-"Configuration options and syntax is detailed in apt.conf(5).\n"
+"Configuration options and syntax are detailed in apt.conf(5).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
@@ -220,7 +220,7 @@ msgstr "पडताळून पाहिल्याशिवाय ही प
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
-"--force-yes is deprecated, use one of the options starting with --allow "
+"--force-yes is deprecated; use one of the options starting with --allow "
 "instead."
 msgstr ""
 
 "instead."
 msgstr ""
 
@@ -1192,7 +1192,7 @@ msgstr "तुमच्या संचामधील सर्व सीडी
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
-"apt-cdrom is used to add CDROM's, USB flashdrives and other removable\n"
+"apt-cdrom is used to add CD-ROMs, USB flashdrives and other removable\n"
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
@@ -1341,7 +1341,7 @@ msgid ""
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
-"e.g. the same proxy configuration or acquire system as APT would do.\n"
+"e.g. the same proxy configuration or acquire system as APT would.\n"
 msgstr ""
 
 #: cmdline/apt-helper.cc
 msgstr ""
 
 #: cmdline/apt-helper.cc
@@ -2481,13 +2481,13 @@ msgstr "%li ची %li संचिका पुन:प्राप्त कर
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Updating such a repository securily is impossible and therefore disabled by "
+"Updating such a repository securely is impossible and therefore disabled by "
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Data from such a repository can not be authenticated and is therefore "
+"Data from such a repository can't be authenticated and is therefore "
 "potentially dangerous to use."
 msgstr ""
 
 "potentially dangerous to use."
 msgstr ""
 
@@ -2561,7 +2561,7 @@ msgstr ""
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' is not signed."
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' is not signed."
@@ -2569,7 +2569,7 @@ msgstr "%s संचिका डायव्हर्ट केली आहे
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' does not have a Release file."
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' does not have a Release file."
@@ -3179,12 +3179,12 @@ msgstr "%s डायव्हर्जन फाईलमध्ये अवै
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Conflicting values set for option %s concerning source %s %s"
+msgid "Conflicting values set for option %s regarding source %s %s"
 msgstr ""
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 msgstr ""
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Invalid value set for option %s concerning source %s %s (%s)"
+msgid "Invalid value set for option %s regarding source %s %s (%s)"
 msgstr ""
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
 msgstr ""
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
index e562b5e1ae35a847c091f1de3460cf393aa45951..d79320d96345525779f03cca28704ce537b43e5f 100644 (file)
--- a/po/nb.po
+++ b/po/nb.po
@@ -186,7 +186,7 @@ msgstr ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
-"Configuration options and syntax is detailed in apt.conf(5).\n"
+"Configuration options and syntax are detailed in apt.conf(5).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
@@ -223,7 +223,7 @@ msgstr "Installer disse pakkene uten verifikasjon?"
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
-"--force-yes is deprecated, use one of the options starting with --allow "
+"--force-yes is deprecated; use one of the options starting with --allow "
 "instead."
 msgstr ""
 
 "instead."
 msgstr ""
 
@@ -1211,7 +1211,7 @@ msgstr "Gjenta denne prosessen for resten av CD-ene i ditt sett."
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
-"apt-cdrom is used to add CDROM's, USB flashdrives and other removable\n"
+"apt-cdrom is used to add CD-ROMs, USB flashdrives and other removable\n"
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
@@ -1360,7 +1360,7 @@ msgid ""
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
-"e.g. the same proxy configuration or acquire system as APT would do.\n"
+"e.g. the same proxy configuration or acquire system as APT would.\n"
 msgstr ""
 
 #: cmdline/apt-helper.cc
 msgstr ""
 
 #: cmdline/apt-helper.cc
@@ -2506,13 +2506,13 @@ msgstr "Henter fil %li av %li"
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Updating such a repository securily is impossible and therefore disabled by "
+"Updating such a repository securely is impossible and therefore disabled by "
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Data from such a repository can not be authenticated and is therefore "
+"Data from such a repository can't be authenticated and is therefore "
 "potentially dangerous to use."
 msgstr ""
 
 "potentially dangerous to use."
 msgstr ""
 
@@ -2589,7 +2589,7 @@ msgstr "Konflikt mellom distribusjoner: %s (forventet %s men fant %s)"
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' is not signed."
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' is not signed."
@@ -2597,7 +2597,7 @@ msgstr "Katalogen %s er avledet"
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' does not have a Release file."
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' does not have a Release file."
@@ -3219,12 +3219,12 @@ msgstr "Ugyldig «Valid-Until»-oppføring i Release-fila %s"
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Conflicting values set for option %s concerning source %s %s"
+msgid "Conflicting values set for option %s regarding source %s %s"
 msgstr ""
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 msgstr ""
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Invalid value set for option %s concerning source %s %s (%s)"
+msgid "Invalid value set for option %s regarding source %s %s (%s)"
 msgstr ""
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
 msgstr ""
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
index 8a8b29f9f8cc38bb87b52db35afaed77a18308b5..81fb6586244844dc410ed71563d6709922cb7de8 100644 (file)
--- a/po/ne.po
+++ b/po/ne.po
@@ -182,7 +182,7 @@ msgstr ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
-"Configuration options and syntax is detailed in apt.conf(5).\n"
+"Configuration options and syntax are detailed in apt.conf(5).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
@@ -220,7 +220,7 @@ msgstr "यी प्याकेजहरू रूजू बिना स्
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
-"--force-yes is deprecated, use one of the options starting with --allow "
+"--force-yes is deprecated; use one of the options starting with --allow "
 "instead."
 msgstr ""
 
 "instead."
 msgstr ""
 
@@ -1192,7 +1192,7 @@ msgstr "तपाईँको सेटमा बाँकी सि डि ह
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
-"apt-cdrom is used to add CDROM's, USB flashdrives and other removable\n"
+"apt-cdrom is used to add CD-ROMs, USB flashdrives and other removable\n"
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
@@ -1340,7 +1340,7 @@ msgid ""
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
-"e.g. the same proxy configuration or acquire system as APT would do.\n"
+"e.g. the same proxy configuration or acquire system as APT would.\n"
 msgstr ""
 
 #: cmdline/apt-helper.cc
 msgstr ""
 
 #: cmdline/apt-helper.cc
@@ -2479,13 +2479,13 @@ msgstr "%li को %li फाइल पुन:प्राप्त गरिद
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Updating such a repository securily is impossible and therefore disabled by "
+"Updating such a repository securely is impossible and therefore disabled by "
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Data from such a repository can not be authenticated and is therefore "
+"Data from such a repository can't be authenticated and is therefore "
 "potentially dangerous to use."
 msgstr ""
 
 "potentially dangerous to use."
 msgstr ""
 
@@ -2560,7 +2560,7 @@ msgstr ""
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' is not signed."
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' is not signed."
@@ -2568,7 +2568,7 @@ msgstr "डाइरेक्ट्री %s फेरियो "
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' does not have a Release file."
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' does not have a Release file."
@@ -3175,12 +3175,12 @@ msgstr "घुमाउरो फाइलमा अवैध लाइन:%s"
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Conflicting values set for option %s concerning source %s %s"
+msgid "Conflicting values set for option %s regarding source %s %s"
 msgstr ""
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 msgstr ""
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Invalid value set for option %s concerning source %s %s (%s)"
+msgid "Invalid value set for option %s regarding source %s %s (%s)"
 msgstr ""
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
 msgstr ""
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
index 462ead432c99f7bdf3dff222ea78687edee7d19b..251383ca1bc9a549e70debe1891ad854dac8c332 100644 (file)
--- a/po/nl.po
+++ b/po/nl.po
@@ -188,7 +188,7 @@ msgstr ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
-"Configuration options and syntax is detailed in apt.conf(5).\n"
+"Configuration options and syntax are detailed in apt.conf(5).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
@@ -226,7 +226,7 @@ msgstr "Wilt u deze pakketten installeren zonder verificatie?"
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
-"--force-yes is deprecated, use one of the options starting with --allow "
+"--force-yes is deprecated; use one of the options starting with --allow "
 "instead."
 msgstr ""
 
 "instead."
 msgstr ""
 
@@ -1243,7 +1243,7 @@ msgstr "Dit proces dient herhaald te worden voor alle cd's in uw set."
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
-"apt-cdrom is used to add CDROM's, USB flashdrives and other removable\n"
+"apt-cdrom is used to add CD-ROMs, USB flashdrives and other removable\n"
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
@@ -1394,7 +1394,7 @@ msgid ""
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
-"e.g. the same proxy configuration or acquire system as APT would do.\n"
+"e.g. the same proxy configuration or acquire system as APT would.\n"
 msgstr ""
 "Gebruik: apt-helper [opties] opdracht\n"
 "         apt-helper [opties] download-file uri doelpad\n"
 msgstr ""
 "Gebruik: apt-helper [opties] opdracht\n"
 "         apt-helper [opties] download-file uri doelpad\n"
@@ -2555,13 +2555,13 @@ msgstr "Bestand %li van %li wordt opgehaald"
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Updating such a repository securily is impossible and therefore disabled by "
+"Updating such a repository securely is impossible and therefore disabled by "
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Data from such a repository can not be authenticated and is therefore "
+"Data from such a repository can't be authenticated and is therefore "
 "potentially dangerous to use."
 msgstr ""
 
 "potentially dangerous to use."
 msgstr ""
 
@@ -2642,7 +2642,7 @@ msgstr "Conflicterende distributie: %s (verwachtte %s, maar kreeg %s)"
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' is not signed."
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' is not signed."
@@ -2650,7 +2650,7 @@ msgstr "De map %s is al omgeleid"
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' does not have a Release file."
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' does not have a Release file."
@@ -3293,12 +3293,12 @@ msgstr "Ongeldige 'Valid-Until'-vermelding in Release-bestand %s"
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Conflicting values set for option %s concerning source %s %s"
+msgid "Conflicting values set for option %s regarding source %s %s"
 msgstr ""
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 msgstr ""
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Invalid value set for option %s concerning source %s %s (%s)"
+msgid "Invalid value set for option %s regarding source %s %s (%s)"
 msgstr ""
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
 msgstr ""
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
index 4d22aa4572ed40623c718092fe3f7b1ce62baee4..e8f88149c1e4eb99e885a22ce5a1c57e06872dca 100644 (file)
--- a/po/nn.po
+++ b/po/nn.po
@@ -186,7 +186,7 @@ msgstr ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
-"Configuration options and syntax is detailed in apt.conf(5).\n"
+"Configuration options and syntax are detailed in apt.conf(5).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
@@ -223,7 +223,7 @@ msgstr "Installer desse pakkane utan verifikasjon?"
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
-"--force-yes is deprecated, use one of the options starting with --allow "
+"--force-yes is deprecated; use one of the options starting with --allow "
 "instead."
 msgstr ""
 
 "instead."
 msgstr ""
 
@@ -1204,7 +1204,7 @@ msgstr ""
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
-"apt-cdrom is used to add CDROM's, USB flashdrives and other removable\n"
+"apt-cdrom is used to add CD-ROMs, USB flashdrives and other removable\n"
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
@@ -1354,7 +1354,7 @@ msgid ""
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
-"e.g. the same proxy configuration or acquire system as APT would do.\n"
+"e.g. the same proxy configuration or acquire system as APT would.\n"
 msgstr ""
 
 #: cmdline/apt-helper.cc
 msgstr ""
 
 #: cmdline/apt-helper.cc
@@ -2490,13 +2490,13 @@ msgstr "Les filliste"
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Updating such a repository securily is impossible and therefore disabled by "
+"Updating such a repository securely is impossible and therefore disabled by "
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Data from such a repository can not be authenticated and is therefore "
+"Data from such a repository can't be authenticated and is therefore "
 "potentially dangerous to use."
 msgstr ""
 
 "potentially dangerous to use."
 msgstr ""
 
@@ -2571,7 +2571,7 @@ msgstr ""
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' is not signed."
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' is not signed."
@@ -2579,7 +2579,7 @@ msgstr "Katalogen %s er avleidd"
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' does not have a Release file."
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' does not have a Release file."
@@ -3191,12 +3191,12 @@ msgstr "Ugyldig linje i avleiingsfila: %s"
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Conflicting values set for option %s concerning source %s %s"
+msgid "Conflicting values set for option %s regarding source %s %s"
 msgstr ""
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 msgstr ""
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Invalid value set for option %s concerning source %s %s (%s)"
+msgid "Invalid value set for option %s regarding source %s %s (%s)"
 msgstr ""
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
 msgstr ""
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
index 718663c493031e60162e6e040786e125cd0eccc4..a3006dfce8f0df43b35a68e37866a7dfe421fdbe 100644 (file)
--- a/po/pl.po
+++ b/po/pl.po
@@ -192,7 +192,7 @@ msgstr ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
-"Configuration options and syntax is detailed in apt.conf(5).\n"
+"Configuration options and syntax are detailed in apt.conf(5).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
@@ -229,7 +229,7 @@ msgstr "Zainstalować te pakiety bez weryfikacji?"
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
-"--force-yes is deprecated, use one of the options starting with --allow "
+"--force-yes is deprecated; use one of the options starting with --allow "
 "instead."
 msgstr ""
 
 "instead."
 msgstr ""
 
@@ -1255,7 +1255,7 @@ msgstr "Należy powtórzyć ten proces dla reszty płyt."
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
-"apt-cdrom is used to add CDROM's, USB flashdrives and other removable\n"
+"apt-cdrom is used to add CD-ROMs, USB flashdrives and other removable\n"
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
@@ -1407,7 +1407,7 @@ msgid ""
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
-"e.g. the same proxy configuration or acquire system as APT would do.\n"
+"e.g. the same proxy configuration or acquire system as APT would.\n"
 msgstr ""
 
 #: cmdline/apt-helper.cc
 msgstr ""
 
 #: cmdline/apt-helper.cc
@@ -2560,13 +2560,13 @@ msgstr "Pobieranie pliku %li z %li"
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Updating such a repository securily is impossible and therefore disabled by "
+"Updating such a repository securely is impossible and therefore disabled by "
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Data from such a repository can not be authenticated and is therefore "
+"Data from such a repository can't be authenticated and is therefore "
 "potentially dangerous to use."
 msgstr ""
 
 "potentially dangerous to use."
 msgstr ""
 
@@ -2646,7 +2646,7 @@ msgstr "Nieprawidłowa dystrybucja: %s (oczekiwano %s, a otrzymano %s)"
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' is not signed."
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' is not signed."
@@ -2654,7 +2654,7 @@ msgstr "Ominięcie katalogu %s"
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' does not have a Release file."
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' does not have a Release file."
@@ -3289,12 +3289,12 @@ msgstr "Nieprawidłowy wpis Valid-Until w pliku Release %s"
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Conflicting values set for option %s concerning source %s %s"
+msgid "Conflicting values set for option %s regarding source %s %s"
 msgstr ""
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 msgstr ""
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Invalid value set for option %s concerning source %s %s (%s)"
+msgid "Invalid value set for option %s regarding source %s %s (%s)"
 msgstr ""
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
 msgstr ""
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
index 9fec1fad1c774b6bd1d8a25cc46b1f58b967e07a..9604f1cde357732ecc6dfd925d18573720c90fc4 100644 (file)
--- a/po/pt.po
+++ b/po/pt.po
@@ -184,7 +184,7 @@ msgstr ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
-"Configuration options and syntax is detailed in apt.conf(5).\n"
+"Configuration options and syntax are detailed in apt.conf(5).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
@@ -221,7 +221,7 @@ msgstr "Instalar estes pacotes sem verificação?"
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
-"--force-yes is deprecated, use one of the options starting with --allow "
+"--force-yes is deprecated; use one of the options starting with --allow "
 "instead."
 msgstr ""
 
 "instead."
 msgstr ""
 
@@ -1225,7 +1225,7 @@ msgstr "Repita este processo para o resto dos CDs no seu conjunto."
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
-"apt-cdrom is used to add CDROM's, USB flashdrives and other removable\n"
+"apt-cdrom is used to add CD-ROMs, USB flashdrives and other removable\n"
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
@@ -1376,7 +1376,7 @@ msgid ""
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
-"e.g. the same proxy configuration or acquire system as APT would do.\n"
+"e.g. the same proxy configuration or acquire system as APT would.\n"
 msgstr ""
 
 #: cmdline/apt-helper.cc
 msgstr ""
 
 #: cmdline/apt-helper.cc
@@ -2525,13 +2525,13 @@ msgstr "A obter o ficheiro %li de %li"
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Updating such a repository securily is impossible and therefore disabled by "
+"Updating such a repository securely is impossible and therefore disabled by "
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Data from such a repository can not be authenticated and is therefore "
+"Data from such a repository can't be authenticated and is therefore "
 "potentially dangerous to use."
 msgstr ""
 
 "potentially dangerous to use."
 msgstr ""
 
@@ -2614,7 +2614,7 @@ msgstr "Distribuição em conflito: %s (esperado %s mas obtido %s)"
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' is not signed."
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' is not signed."
@@ -2622,7 +2622,7 @@ msgstr "O directório %s é desviado"
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' does not have a Release file."
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' does not have a Release file."
@@ -3265,12 +3265,12 @@ msgstr "Entrada inválida, 'Valid-until', no ficheiro de Release: %s"
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Conflicting values set for option %s concerning source %s %s"
+msgid "Conflicting values set for option %s regarding source %s %s"
 msgstr ""
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 msgstr ""
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Invalid value set for option %s concerning source %s %s (%s)"
+msgid "Invalid value set for option %s regarding source %s %s (%s)"
 msgstr ""
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
 msgstr ""
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
index 3fbc89bb522151ae3217db449911f4145aa423c4..0ab9f90cd45212929dae896076c69769a5a1a1ab 100644 (file)
@@ -183,7 +183,7 @@ msgstr ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
-"Configuration options and syntax is detailed in apt.conf(5).\n"
+"Configuration options and syntax are detailed in apt.conf(5).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
@@ -220,7 +220,7 @@ msgstr "Instalar estes pacotes sem verificação?"
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
-"--force-yes is deprecated, use one of the options starting with --allow "
+"--force-yes is deprecated; use one of the options starting with --allow "
 "instead."
 msgstr ""
 
 "instead."
 msgstr ""
 
@@ -1213,7 +1213,7 @@ msgstr "Repita este processo para o restante dos CDs em seu conjunto."
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
-"apt-cdrom is used to add CDROM's, USB flashdrives and other removable\n"
+"apt-cdrom is used to add CD-ROMs, USB flashdrives and other removable\n"
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
@@ -1362,7 +1362,7 @@ msgid ""
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
-"e.g. the same proxy configuration or acquire system as APT would do.\n"
+"e.g. the same proxy configuration or acquire system as APT would.\n"
 msgstr ""
 
 #: cmdline/apt-helper.cc
 msgstr ""
 
 #: cmdline/apt-helper.cc
@@ -2515,13 +2515,13 @@ msgstr "Obtendo arquivo %li de %li"
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Updating such a repository securily is impossible and therefore disabled by "
+"Updating such a repository securely is impossible and therefore disabled by "
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Data from such a repository can not be authenticated and is therefore "
+"Data from such a repository can't be authenticated and is therefore "
 "potentially dangerous to use."
 msgstr ""
 
 "potentially dangerous to use."
 msgstr ""
 
@@ -2595,7 +2595,7 @@ msgstr ""
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' is not signed."
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' is not signed."
@@ -2603,7 +2603,7 @@ msgstr "O diretório %s é desviado (\"diverted\")"
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' does not have a Release file."
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' does not have a Release file."
@@ -3221,12 +3221,12 @@ msgstr "Linha inválida no arquivo de desvios: %s"
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Conflicting values set for option %s concerning source %s %s"
+msgid "Conflicting values set for option %s regarding source %s %s"
 msgstr ""
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 msgstr ""
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Invalid value set for option %s concerning source %s %s (%s)"
+msgid "Invalid value set for option %s regarding source %s %s (%s)"
 msgstr ""
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
 msgstr ""
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
index e7179e994dad7253308fdc5e543a30e4458dfaca..1c4cd8f0f3c09e4b58dbc799aee9ccdaa5dcab41 100644 (file)
--- a/po/ro.po
+++ b/po/ro.po
@@ -184,7 +184,7 @@ msgstr ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
-"Configuration options and syntax is detailed in apt.conf(5).\n"
+"Configuration options and syntax are detailed in apt.conf(5).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
@@ -221,7 +221,7 @@ msgstr "Instalați aceste pachete fără verificare?"
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
-"--force-yes is deprecated, use one of the options starting with --allow "
+"--force-yes is deprecated; use one of the options starting with --allow "
 "instead."
 msgstr ""
 
 "instead."
 msgstr ""
 
@@ -1218,7 +1218,7 @@ msgstr "Repetați această procedură pentru restul CD-urilor din set."
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
-"apt-cdrom is used to add CDROM's, USB flashdrives and other removable\n"
+"apt-cdrom is used to add CD-ROMs, USB flashdrives and other removable\n"
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
@@ -1368,7 +1368,7 @@ msgid ""
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
-"e.g. the same proxy configuration or acquire system as APT would do.\n"
+"e.g. the same proxy configuration or acquire system as APT would.\n"
 msgstr ""
 
 #: cmdline/apt-helper.cc
 msgstr ""
 
 #: cmdline/apt-helper.cc
@@ -2529,13 +2529,13 @@ msgstr "Se descarcă fișierul %li din %li"
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Updating such a repository securily is impossible and therefore disabled by "
+"Updating such a repository securely is impossible and therefore disabled by "
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Data from such a repository can not be authenticated and is therefore "
+"Data from such a repository can't be authenticated and is therefore "
 "potentially dangerous to use."
 msgstr ""
 
 "potentially dangerous to use."
 msgstr ""
 
@@ -2611,7 +2611,7 @@ msgstr ""
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' is not signed."
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' is not signed."
@@ -2619,7 +2619,7 @@ msgstr "Directorul %s este redirectat"
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' does not have a Release file."
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' does not have a Release file."
@@ -3237,12 +3237,12 @@ msgstr "Linie necorespunzătoare în fișierul-redirectare: %s"
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Conflicting values set for option %s concerning source %s %s"
+msgid "Conflicting values set for option %s regarding source %s %s"
 msgstr ""
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 msgstr ""
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Invalid value set for option %s concerning source %s %s (%s)"
+msgid "Invalid value set for option %s regarding source %s %s (%s)"
 msgstr ""
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
 msgstr ""
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
index e866a7716be49dd7f2aea74236ce00f51355e3eb..55dfacd212463d34f6d0ed7425e0e940bdf8e03c 100644 (file)
--- a/po/ru.po
+++ b/po/ru.po
@@ -192,7 +192,7 @@ msgstr ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
-"Configuration options and syntax is detailed in apt.conf(5).\n"
+"Configuration options and syntax are detailed in apt.conf(5).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
@@ -229,7 +229,7 @@ msgstr "Установить эти пакеты без проверки?"
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
-"--force-yes is deprecated, use one of the options starting with --allow "
+"--force-yes is deprecated; use one of the options starting with --allow "
 "instead."
 msgstr ""
 
 "instead."
 msgstr ""
 
@@ -1244,7 +1244,7 @@ msgstr "Повторите этот процесс для всех имеющи
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
-"apt-cdrom is used to add CDROM's, USB flashdrives and other removable\n"
+"apt-cdrom is used to add CD-ROMs, USB flashdrives and other removable\n"
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
@@ -1397,7 +1397,7 @@ msgid ""
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
-"e.g. the same proxy configuration or acquire system as APT would do.\n"
+"e.g. the same proxy configuration or acquire system as APT would.\n"
 msgstr ""
 "Использование: apt-helper [параметры] команда\n"
 "       apt-helper [параметры] download-file uri target-path\n"
 msgstr ""
 "Использование: apt-helper [параметры] команда\n"
 "       apt-helper [параметры] download-file uri target-path\n"
@@ -2558,13 +2558,13 @@ msgstr "Скачивается файл %li из %li"
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Updating such a repository securily is impossible and therefore disabled by "
+"Updating such a repository securely is impossible and therefore disabled by "
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Data from such a repository can not be authenticated and is therefore "
+"Data from such a repository can't be authenticated and is therefore "
 "potentially dangerous to use."
 msgstr ""
 
 "potentially dangerous to use."
 msgstr ""
 
@@ -2643,7 +2643,7 @@ msgstr "Конфликт распространения: %s (ожидался %s
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' is not signed."
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' is not signed."
@@ -2651,7 +2651,7 @@ msgstr "Каталог %s входит в список diverted"
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' does not have a Release file."
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' does not have a Release file."
@@ -3285,12 +3285,12 @@ msgstr "Неправильный элемент «Valid-Until» в файле Re
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Conflicting values set for option %s concerning source %s %s"
+msgid "Conflicting values set for option %s regarding source %s %s"
 msgstr ""
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 msgstr ""
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Invalid value set for option %s concerning source %s %s (%s)"
+msgid "Invalid value set for option %s regarding source %s %s (%s)"
 msgstr ""
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
 msgstr ""
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
index 2905439fbe42985df955f6dacc75683aff8eaac2..58af87acc7498824840cce5988b1cabb9f1bb6c0 100644 (file)
--- a/po/sk.po
+++ b/po/sk.po
@@ -185,7 +185,7 @@ msgstr ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
-"Configuration options and syntax is detailed in apt.conf(5).\n"
+"Configuration options and syntax are detailed in apt.conf(5).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
@@ -222,7 +222,7 @@ msgstr "Nainštalovať tieto nekontrolované balíky?"
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
-"--force-yes is deprecated, use one of the options starting with --allow "
+"--force-yes is deprecated; use one of the options starting with --allow "
 "instead."
 msgstr ""
 
 "instead."
 msgstr ""
 
@@ -1229,7 +1229,7 @@ msgstr "Zopakujte tento postup pre všetky CD v sade diskov."
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
-"apt-cdrom is used to add CDROM's, USB flashdrives and other removable\n"
+"apt-cdrom is used to add CD-ROMs, USB flashdrives and other removable\n"
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
@@ -1379,7 +1379,7 @@ msgid ""
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
-"e.g. the same proxy configuration or acquire system as APT would do.\n"
+"e.g. the same proxy configuration or acquire system as APT would.\n"
 msgstr ""
 
 #: cmdline/apt-helper.cc
 msgstr ""
 
 #: cmdline/apt-helper.cc
@@ -2519,13 +2519,13 @@ msgstr "Sťahuje sa %li. súbor z %li"
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Updating such a repository securily is impossible and therefore disabled by "
+"Updating such a repository securely is impossible and therefore disabled by "
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Data from such a repository can not be authenticated and is therefore "
+"Data from such a repository can't be authenticated and is therefore "
 "potentially dangerous to use."
 msgstr ""
 
 "potentially dangerous to use."
 msgstr ""
 
@@ -2605,7 +2605,7 @@ msgstr "V konflikte s distribúciou: %s (očakávalo sa %s ale dostali sme %s)"
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' is not signed."
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' is not signed."
@@ -2613,7 +2613,7 @@ msgstr "Adresár %s je divertovaný"
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' does not have a Release file."
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' does not have a Release file."
@@ -3235,12 +3235,12 @@ msgstr "Chýba položka „Valid-Until“ v súbore Release %s"
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Conflicting values set for option %s concerning source %s %s"
+msgid "Conflicting values set for option %s regarding source %s %s"
 msgstr ""
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 msgstr ""
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Invalid value set for option %s concerning source %s %s (%s)"
+msgid "Invalid value set for option %s regarding source %s %s (%s)"
 msgstr ""
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
 msgstr ""
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
index 657eb30e05419c7a54afe0d6bb421d1359577e7d..9925aacad8498fbbc665d9fc7386f40d1fdd5d03 100644 (file)
--- a/po/sl.po
+++ b/po/sl.po
@@ -185,7 +185,7 @@ msgstr ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
-"Configuration options and syntax is detailed in apt.conf(5).\n"
+"Configuration options and syntax are detailed in apt.conf(5).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
@@ -222,7 +222,7 @@ msgstr "Ali želite te pakete namestiti brez preverjanja?"
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
-"--force-yes is deprecated, use one of the options starting with --allow "
+"--force-yes is deprecated; use one of the options starting with --allow "
 "instead."
 msgstr ""
 
 "instead."
 msgstr ""
 
@@ -1232,7 +1232,7 @@ msgstr "Ponovi to opravilo za preostanek CD-jev v vaši zbirki."
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
-"apt-cdrom is used to add CDROM's, USB flashdrives and other removable\n"
+"apt-cdrom is used to add CD-ROMs, USB flashdrives and other removable\n"
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
@@ -1383,7 +1383,7 @@ msgid ""
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
-"e.g. the same proxy configuration or acquire system as APT would do.\n"
+"e.g. the same proxy configuration or acquire system as APT would.\n"
 msgstr ""
 
 #: cmdline/apt-helper.cc
 msgstr ""
 
 #: cmdline/apt-helper.cc
@@ -2524,13 +2524,13 @@ msgstr "Pridobivanje datoteke %li od %li"
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Updating such a repository securily is impossible and therefore disabled by "
+"Updating such a repository securely is impossible and therefore disabled by "
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Data from such a repository can not be authenticated and is therefore "
+"Data from such a repository can't be authenticated and is therefore "
 "potentially dangerous to use."
 msgstr ""
 
 "potentially dangerous to use."
 msgstr ""
 
@@ -2610,7 +2610,7 @@ msgstr "Distribucija v sporu: %s (pričakovana %s, toda dobljena %s)"
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' is not signed."
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' is not signed."
@@ -2618,7 +2618,7 @@ msgstr "Mapa %s je odklonjena"
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' does not have a Release file."
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' does not have a Release file."
@@ -3238,12 +3238,12 @@ msgstr "Neveljaven vnos 'Veljavno-do' v Release datoteki %s"
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Conflicting values set for option %s concerning source %s %s"
+msgid "Conflicting values set for option %s regarding source %s %s"
 msgstr ""
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 msgstr ""
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Invalid value set for option %s concerning source %s %s (%s)"
+msgid "Invalid value set for option %s regarding source %s %s (%s)"
 msgstr ""
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
 msgstr ""
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
index ec61327ba9c290fd7871ce29150a74b17497c0ef..bf30ce93a36b03618c5b988b7025612c7709c287 100644 (file)
--- a/po/sv.po
+++ b/po/sv.po
@@ -186,7 +186,7 @@ msgstr ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
-"Configuration options and syntax is detailed in apt.conf(5).\n"
+"Configuration options and syntax are detailed in apt.conf(5).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
@@ -223,7 +223,7 @@ msgstr "Installera dessa paket utan verifiering?"
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
-"--force-yes is deprecated, use one of the options starting with --allow "
+"--force-yes is deprecated; use one of the options starting with --allow "
 "instead."
 msgstr ""
 
 "instead."
 msgstr ""
 
@@ -1228,7 +1228,7 @@ msgstr "Upprepa proceduren för resten av cd-skivorna i din uppsättning."
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
-"apt-cdrom is used to add CDROM's, USB flashdrives and other removable\n"
+"apt-cdrom is used to add CD-ROMs, USB flashdrives and other removable\n"
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
@@ -1378,7 +1378,7 @@ msgid ""
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
-"e.g. the same proxy configuration or acquire system as APT would do.\n"
+"e.g. the same proxy configuration or acquire system as APT would.\n"
 msgstr ""
 "Användning: apt-helper [flaggor] kommando\n"
 "       apt-helper [flaggor] download-file uri målsökväg\n"
 msgstr ""
 "Användning: apt-helper [flaggor] kommando\n"
 "       apt-helper [flaggor] download-file uri målsökväg\n"
@@ -2544,13 +2544,13 @@ msgstr "Hämtar fil %li av %li"
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Updating such a repository securily is impossible and therefore disabled by "
+"Updating such a repository securely is impossible and therefore disabled by "
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Data from such a repository can not be authenticated and is therefore "
+"Data from such a repository can't be authenticated and is therefore "
 "potentially dangerous to use."
 msgstr ""
 
 "potentially dangerous to use."
 msgstr ""
 
@@ -2629,7 +2629,7 @@ msgstr "Konflikt i distribution: %s (förväntade %s men fick %s)"
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' is not signed."
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' is not signed."
@@ -2637,7 +2637,7 @@ msgstr "Förrådet ”%s” är inte längre signerat."
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' does not have a Release file."
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' does not have a Release file."
@@ -3265,12 +3265,12 @@ msgstr "Ogiltig ”Valid-Until”-post i Release-filen %s"
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Conflicting values set for option %s concerning source %s %s"
+msgid "Conflicting values set for option %s regarding source %s %s"
 msgstr ""
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 msgstr ""
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Invalid value set for option %s concerning source %s %s (%s)"
+msgid "Invalid value set for option %s regarding source %s %s (%s)"
 msgstr ""
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
 msgstr ""
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
index 74ebca03468865ba19f7aa0ae8c882bc934b6db5..ba504fd173d92c439366a71f3abb8815972af5f4 100644 (file)
--- a/po/th.po
+++ b/po/th.po
@@ -181,7 +181,7 @@ msgstr ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
-"Configuration options and syntax is detailed in apt.conf(5).\n"
+"Configuration options and syntax are detailed in apt.conf(5).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
@@ -218,7 +218,7 @@ msgstr "จะติดตั้งแพกเกจเหล่านี้โ
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
-"--force-yes is deprecated, use one of the options starting with --allow "
+"--force-yes is deprecated; use one of the options starting with --allow "
 "instead."
 msgstr ""
 
 "instead."
 msgstr ""
 
@@ -1183,7 +1183,7 @@ msgstr "ทำเช่นนี้ต่อไปกับแผ่นซีด
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
-"apt-cdrom is used to add CDROM's, USB flashdrives and other removable\n"
+"apt-cdrom is used to add CD-ROMs, USB flashdrives and other removable\n"
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
@@ -1331,7 +1331,7 @@ msgid ""
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
-"e.g. the same proxy configuration or acquire system as APT would do.\n"
+"e.g. the same proxy configuration or acquire system as APT would.\n"
 msgstr ""
 "วิธีใช้: apt-helper [ตัวเลือก] คำสั่ง\n"
 "      apt-helper [ตัวเลือก] download-file URI พาธปลายทาง\n"
 msgstr ""
 "วิธีใช้: apt-helper [ตัวเลือก] คำสั่ง\n"
 "      apt-helper [ตัวเลือก] download-file URI พาธปลายทาง\n"
@@ -2463,13 +2463,13 @@ msgstr "กำลังดาวน์โหลดแฟ้มที่ %li จ
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Updating such a repository securily is impossible and therefore disabled by "
+"Updating such a repository securely is impossible and therefore disabled by "
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Data from such a repository can not be authenticated and is therefore "
+"Data from such a repository can't be authenticated and is therefore "
 "potentially dangerous to use."
 msgstr ""
 
 "potentially dangerous to use."
 msgstr ""
 
@@ -2548,7 +2548,7 @@ msgstr "ชุดจัดแจกขัดแย้งกัน: %s (ต้อ
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' is not signed."
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' is not signed."
@@ -2556,7 +2556,7 @@ msgstr "ไดเรกทอรี %s ถูก divert"
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' does not have a Release file."
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' does not have a Release file."
@@ -3162,12 +3162,12 @@ msgstr "รายการ 'Valid-Until' ไม่ถูกต้องในแ
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Conflicting values set for option %s concerning source %s %s"
+msgid "Conflicting values set for option %s regarding source %s %s"
 msgstr ""
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 msgstr ""
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Invalid value set for option %s concerning source %s %s (%s)"
+msgid "Invalid value set for option %s regarding source %s %s (%s)"
 msgstr ""
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
 msgstr ""
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
index 1e123e0ad1f083fd23e8e889e04540416a35c9d7..b53b991e71e63be8c3130cdc2b209a313bc6105c 100644 (file)
--- a/po/tl.po
+++ b/po/tl.po
@@ -185,7 +185,7 @@ msgstr ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
-"Configuration options and syntax is detailed in apt.conf(5).\n"
+"Configuration options and syntax are detailed in apt.conf(5).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
@@ -224,7 +224,7 @@ msgstr "Iluklok ang mga paketeng ito na walang beripikasyon?"
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
-"--force-yes is deprecated, use one of the options starting with --allow "
+"--force-yes is deprecated; use one of the options starting with --allow "
 "instead."
 msgstr ""
 
 "instead."
 msgstr ""
 
@@ -1209,7 +1209,7 @@ msgstr "Ulitin ang prosesong ito para sa lahat ng mga CD sa inyong set."
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
-"apt-cdrom is used to add CDROM's, USB flashdrives and other removable\n"
+"apt-cdrom is used to add CD-ROMs, USB flashdrives and other removable\n"
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
@@ -1358,7 +1358,7 @@ msgid ""
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
-"e.g. the same proxy configuration or acquire system as APT would do.\n"
+"e.g. the same proxy configuration or acquire system as APT would.\n"
 msgstr ""
 
 #: cmdline/apt-helper.cc
 msgstr ""
 
 #: cmdline/apt-helper.cc
@@ -2504,13 +2504,13 @@ msgstr "Kinukuha ang talaksang %li ng %li"
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Updating such a repository securily is impossible and therefore disabled by "
+"Updating such a repository securely is impossible and therefore disabled by "
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Data from such a repository can not be authenticated and is therefore "
+"Data from such a repository can't be authenticated and is therefore "
 "potentially dangerous to use."
 msgstr ""
 
 "potentially dangerous to use."
 msgstr ""
 
@@ -2585,7 +2585,7 @@ msgstr ""
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' is not signed."
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' is not signed."
@@ -2593,7 +2593,7 @@ msgstr "Ang directory %s ay divertado"
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' does not have a Release file."
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' does not have a Release file."
@@ -3217,12 +3217,12 @@ msgstr "Di tanggap na linya sa talaksang diversion: %s"
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Conflicting values set for option %s concerning source %s %s"
+msgid "Conflicting values set for option %s regarding source %s %s"
 msgstr ""
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 msgstr ""
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Invalid value set for option %s concerning source %s %s (%s)"
+msgid "Invalid value set for option %s regarding source %s %s (%s)"
 msgstr ""
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
 msgstr ""
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
index 38ba5bcab85d38bab44ebd3ed226c7a559fe1c0a..9ea2bdce82162927548b7ba84363abfe6bf7b59b 100644 (file)
--- a/po/tr.po
+++ b/po/tr.po
@@ -188,7 +188,7 @@ msgstr ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
-"Configuration options and syntax is detailed in apt.conf(5).\n"
+"Configuration options and syntax are detailed in apt.conf(5).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
@@ -225,7 +225,7 @@ msgstr "Paketler doğrulanmadan kurulsun mu?"
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
-"--force-yes is deprecated, use one of the options starting with --allow "
+"--force-yes is deprecated; use one of the options starting with --allow "
 "instead."
 msgstr ""
 "--force-yes seçeneği kullanımdan kaldırılmıştır, lütfen --allow ile başlayan "
 "instead."
 msgstr ""
 "--force-yes seçeneği kullanımdan kaldırılmıştır, lütfen --allow ile başlayan "
@@ -1233,7 +1233,7 @@ msgstr "Kalan CD'leriniz için bu işlemi yineleyin."
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
-"apt-cdrom is used to add CDROM's, USB flashdrives and other removable\n"
+"apt-cdrom is used to add CD-ROMs, USB flashdrives and other removable\n"
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
@@ -1384,7 +1384,7 @@ msgid ""
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
-"e.g. the same proxy configuration or acquire system as APT would do.\n"
+"e.g. the same proxy configuration or acquire system as APT would.\n"
 msgstr ""
 "Kullanım: apt-helper [seçenekler] komut\n"
 "          apt-helper [seçenekler] download-file uri hedef-konum\n"
 msgstr ""
 "Kullanım: apt-helper [seçenekler] komut\n"
 "          apt-helper [seçenekler] download-file uri hedef-konum\n"
@@ -2535,13 +2535,13 @@ msgstr "Alınan dosya: %li / %li"
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Updating such a repository securily is impossible and therefore disabled by "
+"Updating such a repository securely is impossible and therefore disabled by "
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Data from such a repository can not be authenticated and is therefore "
+"Data from such a repository can't be authenticated and is therefore "
 "potentially dangerous to use."
 msgstr ""
 
 "potentially dangerous to use."
 msgstr ""
 
@@ -2620,7 +2620,7 @@ msgstr "Dağıtım çakışması: %s (beklenen %s ama eldeki %s)"
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' is not signed."
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' is not signed."
@@ -2628,7 +2628,7 @@ msgstr "'%s' deposu imzalanmamış"
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' does not have a Release file."
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' does not have a Release file."
@@ -3260,12 +3260,12 @@ msgstr "'Release' dosyasında (%s) geçersiz 'Valid-Until' girdisi"
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Conflicting values set for option %s concerning source %s %s"
+msgid "Conflicting values set for option %s regarding source %s %s"
 msgstr "%s seçeneği için çakışan değer kümesi (kaynak %s %s)"
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 msgstr "%s seçeneği için çakışan değer kümesi (kaynak %s %s)"
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Invalid value set for option %s concerning source %s %s (%s)"
+msgid "Invalid value set for option %s regarding source %s %s (%s)"
 msgstr "%s seçeneği için geçersiz değer kümesi (kaynak: %s %s) (%s)"
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
 msgstr "%s seçeneği için geçersiz değer kümesi (kaynak: %s %s) (%s)"
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
index 9dcea7c6ac1e7381cf4ceb68bde1d19d14555ee2..c95107360d1b05e3be8f79f7316c1093a71e77f0 100644 (file)
--- a/po/uk.po
+++ b/po/uk.po
@@ -192,7 +192,7 @@ msgstr ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
-"Configuration options and syntax is detailed in apt.conf(5).\n"
+"Configuration options and syntax are detailed in apt.conf(5).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
@@ -229,7 +229,7 @@ msgstr "Встановити ці пакунки без перевірки?"
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
-"--force-yes is deprecated, use one of the options starting with --allow "
+"--force-yes is deprecated; use one of the options starting with --allow "
 "instead."
 msgstr ""
 
 "instead."
 msgstr ""
 
@@ -1242,7 +1242,7 @@ msgstr "Повторіть цей процес для решти CD з вашо
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
-"apt-cdrom is used to add CDROM's, USB flashdrives and other removable\n"
+"apt-cdrom is used to add CD-ROMs, USB flashdrives and other removable\n"
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
@@ -1397,7 +1397,7 @@ msgid ""
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
-"e.g. the same proxy configuration or acquire system as APT would do.\n"
+"e.g. the same proxy configuration or acquire system as APT would.\n"
 msgstr ""
 
 #: cmdline/apt-helper.cc
 msgstr ""
 
 #: cmdline/apt-helper.cc
@@ -2560,13 +2560,13 @@ msgstr "Завантажується файл %li з %li"
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Updating such a repository securily is impossible and therefore disabled by "
+"Updating such a repository securely is impossible and therefore disabled by "
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Data from such a repository can not be authenticated and is therefore "
+"Data from such a repository can't be authenticated and is therefore "
 "potentially dangerous to use."
 msgstr ""
 
 "potentially dangerous to use."
 msgstr ""
 
@@ -2646,7 +2646,7 @@ msgstr "Конфліктуючий дистрибутив: %s (очікував
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' is not signed."
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' is not signed."
@@ -2654,7 +2654,7 @@ msgstr "Директорія %s є відхиленою (diverted)"
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' does not have a Release file."
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' does not have a Release file."
@@ -3285,12 +3285,12 @@ msgstr "Невірний запис 'Valid-Until' у 'Release' файлі %s"
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Conflicting values set for option %s concerning source %s %s"
+msgid "Conflicting values set for option %s regarding source %s %s"
 msgstr ""
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 msgstr ""
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Invalid value set for option %s concerning source %s %s (%s)"
+msgid "Invalid value set for option %s regarding source %s %s (%s)"
 msgstr ""
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
 msgstr ""
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
index 0ecae44a0c01b28dd95f121849c6deef023eeea4..2a2cf04ac2631a93186ca4fe6f498518df840f8e 100644 (file)
--- a/po/vi.po
+++ b/po/vi.po
@@ -186,7 +186,7 @@ msgstr ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
-"Configuration options and syntax is detailed in apt.conf(5).\n"
+"Configuration options and syntax are detailed in apt.conf(5).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
@@ -223,7 +223,7 @@ msgstr "Cài đặt những gói này mà không cần thẩm tra?"
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
-"--force-yes is deprecated, use one of the options starting with --allow "
+"--force-yes is deprecated; use one of the options starting with --allow "
 "instead."
 msgstr ""
 
 "instead."
 msgstr ""
 
@@ -1210,7 +1210,7 @@ msgstr "Hãy lặp lại tiến trình này cho các Đĩa còn lại trong bộ
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
-"apt-cdrom is used to add CDROM's, USB flashdrives and other removable\n"
+"apt-cdrom is used to add CD-ROMs, USB flashdrives and other removable\n"
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
@@ -1366,7 +1366,7 @@ msgid ""
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
-"e.g. the same proxy configuration or acquire system as APT would do.\n"
+"e.g. the same proxy configuration or acquire system as APT would.\n"
 msgstr ""
 "Cách dùng: apt-helper [các-tùy-chọn] lệnh\n"
 "           apt-helper [các-tùy-chọn] download-file uri đường-dẫn-đích\n"
 msgstr ""
 "Cách dùng: apt-helper [các-tùy-chọn] lệnh\n"
 "           apt-helper [các-tùy-chọn] download-file uri đường-dẫn-đích\n"
@@ -2538,13 +2538,13 @@ msgstr "Đang tải tập tin %li trong tổng số %li"
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Updating such a repository securily is impossible and therefore disabled by "
+"Updating such a repository securely is impossible and therefore disabled by "
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Data from such a repository can not be authenticated and is therefore "
+"Data from such a repository can't be authenticated and is therefore "
 "potentially dangerous to use."
 msgstr ""
 
 "potentially dangerous to use."
 msgstr ""
 
@@ -2624,7 +2624,7 @@ msgstr "Bản phát hành xung đột: %s (cần %s nhưng lại nhận được
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' is not signed."
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' is not signed."
@@ -2632,7 +2632,7 @@ msgstr "Thư mục %s bị trệch hướng"
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' does not have a Release file."
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' does not have a Release file."
@@ -3260,12 +3260,12 @@ msgstr ""
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Conflicting values set for option %s concerning source %s %s"
+msgid "Conflicting values set for option %s regarding source %s %s"
 msgstr ""
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 msgstr ""
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Invalid value set for option %s concerning source %s %s (%s)"
+msgid "Invalid value set for option %s regarding source %s %s (%s)"
 msgstr ""
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
 msgstr ""
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
index 446af6586e2a7e6c9896013d1df713d81ccbfe60..07ea704b715ab09480637c02eec001ff2a7bf644 100644 (file)
@@ -184,7 +184,7 @@ msgstr ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
-"Configuration options and syntax is detailed in apt.conf(5).\n"
+"Configuration options and syntax are detailed in apt.conf(5).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
@@ -221,7 +221,7 @@ msgstr "不经验证就安装这些软件包吗?"
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
-"--force-yes is deprecated, use one of the options starting with --allow "
+"--force-yes is deprecated; use one of the options starting with --allow "
 "instead."
 msgstr ""
 
 "instead."
 msgstr ""
 
@@ -1181,7 +1181,7 @@ msgstr "请对您的盘片套件中的其它盘片重复相同的操作。"
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
-"apt-cdrom is used to add CDROM's, USB flashdrives and other removable\n"
+"apt-cdrom is used to add CD-ROMs, USB flashdrives and other removable\n"
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
@@ -1329,7 +1329,7 @@ msgid ""
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
-"e.g. the same proxy configuration or acquire system as APT would do.\n"
+"e.g. the same proxy configuration or acquire system as APT would.\n"
 msgstr ""
 "用法: apt-helper [选项] 命令\n"
 "       apt-helper [选项] download-file URI 目标路径\n"
 msgstr ""
 "用法: apt-helper [选项] 命令\n"
 "       apt-helper [选项] download-file URI 目标路径\n"
@@ -2464,13 +2464,13 @@ msgstr "正在下载第 %li 个文件,共 %li 个"
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Updating such a repository securily is impossible and therefore disabled by "
+"Updating such a repository securely is impossible and therefore disabled by "
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Data from such a repository can not be authenticated and is therefore "
+"Data from such a repository can't be authenticated and is therefore "
 "potentially dangerous to use."
 msgstr ""
 
 "potentially dangerous to use."
 msgstr ""
 
@@ -2546,7 +2546,7 @@ msgstr "冲突的发行版:%s (期望 %s 但得到 %s)"
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' is not signed."
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' is not signed."
@@ -2554,7 +2554,7 @@ msgstr "目录 %s 已被转移"
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' does not have a Release file."
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' does not have a Release file."
@@ -3165,12 +3165,12 @@ msgstr "软件包仓库 Release 文件 %s 内 Valid-Until 条目无效"
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Conflicting values set for option %s concerning source %s %s"
+msgid "Conflicting values set for option %s regarding source %s %s"
 msgstr ""
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 msgstr ""
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Invalid value set for option %s concerning source %s %s (%s)"
+msgid "Invalid value set for option %s regarding source %s %s (%s)"
 msgstr ""
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
 msgstr ""
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
index 7a0c75ffbdf6093cd78f6d4877aaca246ba447f9..7b23c6ad867ed57d1e8330824b768fc2b1f2aa83 100644 (file)
@@ -182,7 +182,7 @@ msgstr ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
 
 #: apt-private/private-cmndline.cc
 msgid ""
-"Configuration options and syntax is detailed in apt.conf(5).\n"
+"Configuration options and syntax are detailed in apt.conf(5).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
 "Information about how to configure sources can be found in sources.list(5).\n"
 "Package and version choices can be expressed via apt_preferences(5).\n"
 "Security details are available in apt-secure(8).\n"
@@ -219,7 +219,7 @@ msgstr "是否不經驗證就安裝這些套件?"
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
 
 #: apt-private/private-download.cc apt-private/private-install.cc
 msgid ""
-"--force-yes is deprecated, use one of the options starting with --allow "
+"--force-yes is deprecated; use one of the options starting with --allow "
 "instead."
 msgstr ""
 
 "instead."
 msgstr ""
 
@@ -1185,7 +1185,7 @@ msgstr "請對您的光碟組中的其它光碟重複相同的操作。"
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
 msgid ""
 "Usage: apt-cdrom [options] command\n"
 "\n"
-"apt-cdrom is used to add CDROM's, USB flashdrives and other removable\n"
+"apt-cdrom is used to add CD-ROMs, USB flashdrives and other removable\n"
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
 "media types as package sources to APT. The mount point and device\n"
 "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
 msgstr ""
@@ -1333,7 +1333,7 @@ msgid ""
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
 "       apt-helper [options] download-file uri target-path\n"
 "\n"
 "apt-helper bundles a variety of commands for shell scripts to use\n"
-"e.g. the same proxy configuration or acquire system as APT would do.\n"
+"e.g. the same proxy configuration or acquire system as APT would.\n"
 msgstr ""
 
 #: cmdline/apt-helper.cc
 msgstr ""
 
 #: cmdline/apt-helper.cc
@@ -2465,13 +2465,13 @@ msgstr "正在取得檔案 %li/%li"
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Updating such a repository securily is impossible and therefore disabled by "
+"Updating such a repository securely is impossible and therefore disabled by "
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
 "default."
 msgstr ""
 
 #: apt-pkg/acquire-item.cc
 msgid ""
-"Data from such a repository can not be authenticated and is therefore "
+"Data from such a repository can't be authenticated and is therefore "
 "potentially dangerous to use."
 msgstr ""
 
 "potentially dangerous to use."
 msgstr ""
 
@@ -2545,7 +2545,7 @@ msgstr "發行版本衝突:%s(應當是 %s 但卻得到 %s)"
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present, or verification failed, so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' is not signed."
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' is not signed."
@@ -2553,7 +2553,7 @@ msgstr "路徑 %s 已被抽換"
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
 
 #. No Release file was present so fall
 #. back to queueing Packages files without verification
-#. only allow going further if the users explicitely wants it
+#. only allow going further if the user explicitly wants it
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' does not have a Release file."
 #: apt-pkg/acquire-item.cc
 #, fuzzy, c-format
 msgid "The repository '%s' does not have a Release file."
@@ -3160,12 +3160,12 @@ msgstr "在 Release 檔 %s 裡沒有 Hash 項目"
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Conflicting values set for option %s concerning source %s %s"
+msgid "Conflicting values set for option %s regarding source %s %s"
 msgstr ""
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 msgstr ""
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
-msgid "Invalid value set for option %s concerning source %s %s (%s)"
+msgid "Invalid value set for option %s regarding source %s %s (%s)"
 msgstr ""
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
 msgstr ""
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
index 795e0f39e4527e620c2d9d6888ac1ab477854747..c2b20468a07a7d9e99d49512385cdbac6fd231ff 100755 (executable)
@@ -34,7 +34,7 @@ Err:2 file:$APTARCHIVE unstable Release
   File not found - ${APTARCHIVE}/dists/unstable/Release (2: No such file or directory)
 Reading package lists...
 E: The repository 'file:$APTARCHIVE unstable Release' does not have a Release file.
   File not found - ${APTARCHIVE}/dists/unstable/Release (2: No such file or directory)
 Reading package lists...
 E: The repository 'file:$APTARCHIVE unstable Release' does not have a Release file.
-N: Updating such a repository securily is impossible and therefore disabled by default.
+N: Updating such a repository securely is impossible and therefore disabled by default.
 N: See apt-secure(8) manpage for repository creation and user configuration details." aptget update --no-allow-insecure-repositories
 
 # no package foo
 N: See apt-secure(8) manpage for repository creation and user configuration details." aptget update --no-allow-insecure-repositories
 
 # no package foo
@@ -84,7 +84,7 @@ Get:5 file:$APTARCHIVE unstable/main all Packages [$(filesize 'Packages' 'Archit
 Get:6 file:$APTARCHIVE unstable/main Translation-en [$(filesize 'Translations') B]
 Reading package lists...
 W: The repository 'file:$APTARCHIVE unstable Release' does not have a Release file.
 Get:6 file:$APTARCHIVE unstable/main Translation-en [$(filesize 'Translations') B]
 Reading package lists...
 W: The repository 'file:$APTARCHIVE unstable Release' does not have a Release file.
-N: Data from such a repository can not be authenticated and is therefore potentially dangerous to use.
+N: Data from such a repository can't be authenticated and is therefore potentially dangerous to use.
 N: See apt-secure(8) manpage for repository creation and user configuration details." aptget update --allow-insecure-repositories
 # ensure we can not install the package
 testfailureequal "WARNING: The following packages cannot be authenticated!
 N: See apt-secure(8) manpage for repository creation and user configuration details." aptget update --allow-insecure-repositories
 # ensure we can not install the package
 testfailureequal "WARNING: The following packages cannot be authenticated!
index b68d850444cabe00e10cdec7791cac067d23ba4b..17d27bbaa6f57d65ef349ed0afb9aaa6e8e6e713 100755 (executable)
@@ -44,7 +44,7 @@ testsuccessequal "foo:
 pretest
 mv aptarchive/dists/stable aptarchive/dists/stable.good
 testfailuremsg "E: The repository 'https://localhost:${APTHTTPSPORT} stable Release' does not have a Release file.
 pretest
 mv aptarchive/dists/stable aptarchive/dists/stable.good
 testfailuremsg "E: The repository 'https://localhost:${APTHTTPSPORT} stable Release' does not have a Release file.
-N: Updating such a repository securily is impossible and therefore disabled by default.
+N: Updating such a repository securely is impossible and therefore disabled by default.
 N: See apt-secure(8) manpage for repository creation and user configuration details." apt update
 testfailure aptget update --no-allow-insecure-repositories
 testequalor2 "Hit:1 http://localhost:${APTHTTPPORT} sid InRelease
 N: See apt-secure(8) manpage for repository creation and user configuration details." apt update
 testfailure aptget update --no-allow-insecure-repositories
 testequalor2 "Hit:1 http://localhost:${APTHTTPPORT} sid InRelease
@@ -54,7 +54,7 @@ Err:3 https://localhost:${APTHTTPSPORT} stable Release
   404  Not Found
 Reading package lists...
 E: The repository 'https://localhost:${APTHTTPSPORT} stable Release' does not have a Release file.
   404  Not Found
 Reading package lists...
 E: The repository 'https://localhost:${APTHTTPSPORT} stable Release' does not have a Release file.
-N: Updating such a repository securily is impossible and therefore disabled by default.
+N: Updating such a repository securely is impossible and therefore disabled by default.
 N: See apt-secure(8) manpage for repository creation and user configuration details." "Ign:1 https://localhost:${APTHTTPSPORT} stable InRelease
   404  Not Found
 Err:2 https://localhost:${APTHTTPSPORT} stable Release
 N: See apt-secure(8) manpage for repository creation and user configuration details." "Ign:1 https://localhost:${APTHTTPSPORT} stable InRelease
   404  Not Found
 Err:2 https://localhost:${APTHTTPSPORT} stable Release
@@ -62,7 +62,7 @@ Err:2 https://localhost:${APTHTTPSPORT} stable Release
 Hit:3 http://localhost:${APTHTTPPORT} sid InRelease
 Reading package lists...
 E: The repository 'https://localhost:${APTHTTPSPORT} stable Release' does not have a Release file.
 Hit:3 http://localhost:${APTHTTPPORT} sid InRelease
 Reading package lists...
 E: The repository 'https://localhost:${APTHTTPSPORT} stable Release' does not have a Release file.
-N: Updating such a repository securily is impossible and therefore disabled by default.
+N: Updating such a repository securely is impossible and therefore disabled by default.
 N: See apt-secure(8) manpage for repository creation and user configuration details." cat rootdir/tmp/testfailure.output
 
 mv aptarchive/dists/stable.good aptarchive/dists/stable
 N: See apt-secure(8) manpage for repository creation and user configuration details." cat rootdir/tmp/testfailure.output
 
 mv aptarchive/dists/stable.good aptarchive/dists/stable
index 7477525409d46ff8078d748e391cba6fc9b61713..553ae92df5b605379830e9ee60550f7105e0d3af 100755 (executable)
@@ -83,7 +83,7 @@ Ign:3 http://localhost:${APTHTTPPORT} unstable Release.gpg
   404  Not Found
 Reading package lists...
 W: The repository 'http://localhost:${APTHTTPPORT} unstable Release' is not signed.
   404  Not Found
 Reading package lists...
 W: The repository 'http://localhost:${APTHTTPPORT} unstable Release' is not signed.
-N: Data from such a repository can not be authenticated and is therefore potentially dangerous to use.
+N: Data from such a repository can't be authenticated and is therefore potentially dangerous to use.
 N: See apt-secure(8) manpage for repository creation and user configuration details."
 find aptarchive -name 'Release.gpg' -delete
 echo 'Acquire::GzipIndexes "0";' > rootdir/etc/apt/apt.conf.d/02compressindex
 N: See apt-secure(8) manpage for repository creation and user configuration details."
 find aptarchive -name 'Release.gpg' -delete
 echo 'Acquire::GzipIndexes "0";' > rootdir/etc/apt/apt.conf.d/02compressindex
@@ -128,7 +128,7 @@ Ign:3 http://localhost:${APTHTTPPORT} unstable Release.gpg
   404  Not Found
 Reading package lists...
 W: The repository 'http://localhost:${APTHTTPPORT} unstable Release' is not signed.
   404  Not Found
 Reading package lists...
 W: The repository 'http://localhost:${APTHTTPPORT} unstable Release' is not signed.
-N: Data from such a repository can not be authenticated and is therefore potentially dangerous to use.
+N: Data from such a repository can't be authenticated and is therefore potentially dangerous to use.
 N: See apt-secure(8) manpage for repository creation and user configuration details.
 E: Release file for http://localhost:${APTHTTPPORT}/dists/unstable/Release is expired (invalid since). Updates for this repository will not be applied."
 find aptarchive -name 'Release.gpg' -delete
 N: See apt-secure(8) manpage for repository creation and user configuration details.
 E: Release file for http://localhost:${APTHTTPPORT}/dists/unstable/Release is expired (invalid since). Updates for this repository will not be applied."
 find aptarchive -name 'Release.gpg' -delete
@@ -173,7 +173,7 @@ Hit:5 http://localhost:${APTHTTPPORT} unstable/main all Packages
 Hit:6 http://localhost:${APTHTTPPORT} unstable/main Translation-en
 Reading package lists...
 W: The repository 'http://localhost:${APTHTTPPORT} unstable Release' does not have a Release file.
 Hit:6 http://localhost:${APTHTTPPORT} unstable/main Translation-en
 Reading package lists...
 W: The repository 'http://localhost:${APTHTTPPORT} unstable Release' does not have a Release file.
-N: Data from such a repository can not be authenticated and is therefore potentially dangerous to use.
+N: Data from such a repository can't be authenticated and is therefore potentially dangerous to use.
 N: See apt-secure(8) manpage for repository creation and user configuration details."
 find aptarchive -name '*Release*' -delete
 echo 'Acquire::GzipIndexes "0";
 N: See apt-secure(8) manpage for repository creation and user configuration details."
 find aptarchive -name '*Release*' -delete
 echo 'Acquire::GzipIndexes "0";
index 89b197129353d0e9805a004851b0486d646170bb..aeff1791d9dce4e11de327798cb10a61f8bf44f8 100755 (executable)
@@ -34,7 +34,7 @@ EOF
 assert_update_is_refused_and_last_good_state_used()
 {
     testfailuremsg "E: The repository 'file:${APTARCHIVE} unstable Release' is no longer signed.
 assert_update_is_refused_and_last_good_state_used()
 {
     testfailuremsg "E: The repository 'file:${APTARCHIVE} unstable Release' is no longer signed.
-N: Updating such a repository securily is impossible and therefore disabled by default.
+N: Updating such a repository securely is impossible and therefore disabled by default.
 N: See apt-secure(8) manpage for repository creation and user configuration details." aptget update
 
     assert_repo_is_intact
 N: See apt-secure(8) manpage for repository creation and user configuration details." aptget update
 
     assert_repo_is_intact
index 78c705b0f21d480bf3704c593e75281ba4fa794c..26de76807959267b502c7a7db8aa1ed1c19a053e 100755 (executable)
@@ -203,7 +203,7 @@ everythingfails -t testing
 msgmsg 'Test conflicting trusted options are refused'
 testsource() {
        echo "$@" > rootdir/etc/apt/sources.list.d/example.list
 msgmsg 'Test conflicting trusted options are refused'
 testsource() {
        echo "$@" > rootdir/etc/apt/sources.list.d/example.list
-       testfailuremsg 'E: Conflicting values set for option Trusted concerning source http://example.org/bad/ unstable
+       testfailuremsg 'E: Conflicting values set for option Trusted regarding source http://example.org/bad/ unstable
 E: The list of sources could not be read.' aptget update --print-uris
 }
 for VAL in 'yes' 'no'; do
 E: The list of sources could not be read.' aptget update --print-uris
 }
 for VAL in 'yes' 'no'; do